| 
					
				 | 
			
			
				@@ -0,0 +1,697 @@ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+<template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  <div class="app-container"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+       <el-form-item label="所属部门" prop="deptId"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          <treeselect style="width:205.4px" v-model="queryParams.deptId" :options="deptOptions" :show-count="true" placeholder="请选择所属部门" /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-form-item> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+       <el-form-item label="员工姓名" prop="userNickName"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        <el-input 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          v-model="queryParams.userNickName" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          placeholder="请输入员工姓名" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          clearable 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          size="small" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          @keyup.enter.native="handleQuery" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-form-item> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-form-item label="所属档期" prop="scheduleId"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <el-select  style="width:205.4px" v-model="queryParams.scheduleId" placeholder="请选择档期" clearable size="small" > 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                  <el-option 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                      v-for="item in scheduleList" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                      :key="item.id" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                      :label="item.name" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                      :value="item.id" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            </el-select> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        </el-form-item> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+       <!-- <el-form-item label="档期名称" prop="scheduleName"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        <el-input 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          v-model="queryParams.name" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          placeholder="请输入档期名称" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          clearable 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          size="small" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          @keyup.enter.native="handleQuery" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-form-item> --> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    <!-- <el-form-item label="档期状态" prop="scheduleStatus"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        <el-select v-model="queryParams.status" placeholder="请选择档期状态" clearable size="small"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          <el-option 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            v-for="dict in statusOptions" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            :key="dict.dictValue" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            :label="dict.dictLabel" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            :value="dict.dictValue" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        </el-select> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-form-item> --> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-form-item label="创建时间" prop="createTime"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <el-date-picker 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              style="width:205.4px" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              clearable size="small" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              v-model="dateRange" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              type="daterange" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              value-format="yyyy-MM-dd" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              start-placeholder="开始日期" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              end-placeholder="结束日期"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            </el-date-picker> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          </el-form-item> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-form-item> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        <el-button type="cyan" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        <el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-form-item> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    </el-form> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    <el-row :gutter="10" class="mb8"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-col :span="1.5"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        <el-button 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          type="primary" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          icon="el-icon-plus" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          size="mini" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          @click="handleAdd" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          v-hasPermi="['company:tcmScheduleReport:add']" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        >新增</el-button> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-col> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-col :span="1.5"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        <el-button 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          type="success" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          icon="el-icon-edit" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          size="mini" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          :disabled="single" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          @click="handleUpdate" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          v-hasPermi="['company:tcmScheduleReport:edit']" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        >修改</el-button> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-col> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-col :span="1.5"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        <el-button 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          type="danger" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          icon="el-icon-delete" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          size="mini" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          :disabled="multiple" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          @click="handleDelete" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          v-hasPermi="['company:tcmScheduleReport:remove']" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        >删除</el-button> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-col> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-col :span="1.5"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        <el-button 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          type="warning" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          icon="el-icon-download" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          size="mini" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          @click="handleExport" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          v-hasPermi="['company:tcmScheduleReport:export']" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        >导出</el-button> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-col> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+	  <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    </el-row> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    <el-table v-loading="loading" :data="tcmScheduleReportList" @selection-change="handleSelectionChange"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+       <!-- <el-table-column  type="expand" > 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <template slot-scope="scope"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                <el-table border :data="[scope.row]"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    <el-table-column prop="round1Money" label="一轮业绩" ></el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    <el-table-column prop="round1Order" label="一轮单数"></el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    <el-table-column prop="count" label="一轮转化率"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                        <template slot-scope="scope1"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                             {{(scope1.row.onlineRate*100).toFixed(2)+"%"}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                        </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    <el-table-column prop="round2Unit" label="一轮客单"></el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                </el-table> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> --> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="id"  width="50" align="center" prop="id" /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="档期" align="center" prop="scheduleName" /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="公司名称" align="center" prop="companyName" /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="所在部门" align="center" prop="deptName" /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="员工姓名" align="center" prop="userNickName" /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="总进线"  width="60"  align="center" prop="totalNum" /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="注册数"  width="60"  align="center" prop="registerNum" /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="上线数"  width="60"  align="center" prop="onlineNum" /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="完课数"  width="60"  align="center" prop="finishNum" /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="注册率"  width="70"  align="center" prop="registerRate"   > 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <template slot-scope="scope"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              {{(scope.row.registerRate*100).toFixed(2)+"%"}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+     </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+     <el-table-column  label="上线率" width="70" align="center" prop="onlineRate"   > 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <template slot-scope="scope"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              {{(scope.row.onlineRate*100).toFixed(2)+"%"}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+     <el-table-column  label="完课率" width="70" align="center" prop="finishRate"   > 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+           <template slot-scope="scope"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              {{(scope.row.finishRate*100).toFixed(2)+"%"}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+           </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+     <el-table-column  label="累计总业绩" width="90" align="center" prop="totalMoney"   > 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <template slot-scope="scope"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+               {{!scope.row.totalMoney?0:(scope.row.totalMoney).toFixed(2)}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+     <el-table-column  label="累计总单" width="80" align="center" prop="totalOrder"   > 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <template slot-scope="scope"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              {{!scope.row.totalOrder?0:scope.row.totalOrder}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+   <el-table-column  label="目标业绩"  width="80"  align="center" prop="targetMoney"   > 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          <template slot-scope="scope"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            {{!scope.row.targetMoney?0:(scope.row.targetMoney).toFixed(2)}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    <el-table-column  label="目标完成率"  width="90" align="center" prop="targetRate"   > 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+           <template slot-scope="scope"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                {{!scope.row.targetRate?0:(scope.row.targetRate*100).toFixed(2)+"%" }} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+           </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    <el-table-column label="创建时间" align="center" prop="createTime" width="100"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <template slot-scope="scope"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+               <span>{{ parseTime(scope.row.createTime) }}</span> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+       <el-table-column  label="一轮业绩"  width="72"  align="center" prop="round1Money"   > 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+           <template slot-scope="scope"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                {{!scope.row.round1Money?0:(scope.row.round1Money).toFixed(2)}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+           </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="一轮单数"  width="72" align="center" prop="round1Order" ></el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="一轮转化率" width="85"  align="center" prop="count"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <template slot-scope="scope1"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                {{(scope1.row.onlineRate*100).toFixed(2)+"%"}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="一轮客单"  width="72"  align="center" prop="round1Unit"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+             <template slot-scope="scope1"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                {{(scope1.row.round2Unit).toFixed(2)}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+             </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column  label="二轮业绩"  width="72"  align="center" prop="round2Money"   > 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+           <template slot-scope="scope"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                {{!scope.row.round2Money?0:(scope.row.round2Money).toFixed(2)}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+           </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="二轮单数"  width="72" align="center" prop="round2Order" ></el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="二轮转化率" width="85"  align="center" prop="round2Rate"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <template slot-scope="scope1"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                {{(scope1.row.round2Rate*100).toFixed(2)+"%"}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="二轮客单"  width="72"  align="center" prop="round2Unit"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+             <template slot-scope="scope1"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                {{(scope1.row.round2Unit).toFixed(2)}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+             </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column  label="三轮业绩"  width="72"  align="center" prop="round3Money"   > 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+           <template slot-scope="scope"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                {{!scope.row.round3Money?0:(scope.row.round3Money).toFixed(2)}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+           </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="三轮单数"  width="72" align="center" prop="round3Order" ></el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="三轮转化率" width="85"  align="center" prop="round3Rate"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <template slot-scope="scope1"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                {{(scope1.row.round3Rate*100).toFixed(2)+"%"}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="三轮客单"  width="72"  align="center" prop="round3Unit"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+             <template slot-scope="scope1"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                {{(scope1.row.round3Unit).toFixed(2)}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+             </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column  label="四轮业绩"  width="72"  align="center" prop="round4Money"   > 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+           <template slot-scope="scope"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                {{!scope.row.round4Money?0:(scope.row.round4Money).toFixed(2)}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+           </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="四轮单数"  width="72" align="center" prop="round4Order" ></el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="四轮转化率" width="85"  align="center" prop="round4Rate"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <template slot-scope="scope1"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                {{(scope1.row.round4Rate*100).toFixed(2)+"%"}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="四轮客单"  width="72"  align="center" prop="round4Unit"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+             <template slot-scope="scope1"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                {{(scope1.row.round4Unit).toFixed(2)}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+             </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column  label="五轮业绩"  width="72"  align="center" prop="round5Money"   > 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+           <template slot-scope="scope"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                {{!scope.row.round5Money?0:(scope.row.round5Money).toFixed(2)}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+           </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="五轮单数"  width="72" align="center" prop="round5Order" ></el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="五轮转化率" width="85"  align="center" prop="round5Rate"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <template slot-scope="scope1"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                {{(scope1.row.round5Rate*100).toFixed(2)+"%"}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="五轮客单"  width="72"  align="center" prop="round5Unit"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+             <template slot-scope="scope1"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                {{(scope1.row.round5Unit).toFixed(2)}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+             </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+       
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column  label="六轮业绩"  width="72"  align="center" prop="round6Money"   > 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+           <template slot-scope="scope"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                {{!scope.row.round6Money?0:(scope.row.round6Money).toFixed(2)}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+           </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="六轮单数"  width="72" align="center" prop="round6Order" ></el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="六轮转化率" width="85"  align="center" prop="round6Rate"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <template slot-scope="scope1"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                {{(scope1.row.round6Rate*100).toFixed(2)+"%"}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="六轮客单"  width="72"  align="center" prop="round6Unit"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+             <template slot-scope="scope1"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                {{(scope1.row.round6Unit).toFixed(2)}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+             </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column  label="七轮业绩"  width="72"  align="center" prop="round7Money"   > 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+           <template slot-scope="scope"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                {{!scope.row.round7Money?0:(scope.row.round7Money).toFixed(2)}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+           </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="七轮单数"  width="72" align="center" prop="round7Order" ></el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="七轮转化率" width="85"  align="center" prop="round7Rate"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <template slot-scope="scope1"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                {{(scope1.row.round7Rate*100).toFixed(2)+"%"}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="七轮客单"  width="72"  align="center" prop="round7Unit"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+             <template slot-scope="scope1"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                {{(scope1.row.round7Unit).toFixed(2)}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+             </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column  label="八轮业绩"  width="72"  align="center" prop="round8Money"   > 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+           <template slot-scope="scope"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                {{!scope.row.round8Money?0:(scope.row.round8Money).toFixed(2)}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+           </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="八轮单数"  width="72" align="center" prop="round8Order" ></el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="八轮转化率" width="85"  align="center" prop="round8Rate"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <template slot-scope="scope1"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                {{(scope1.row.round8Rate*100).toFixed(2)+"%"}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="八轮客单"  width="72"  align="center" prop="round8Unit"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+             <template slot-scope="scope1"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                {{(scope1.row.round8Unit).toFixed(2)}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+             </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column  label="九轮业绩"  width="72"  align="center" prop="round9Money"   > 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <template slot-scope="scope"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    {{!scope.row.round9Money?0:(scope.row.round9Money).toFixed(2)}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="九轮单数"  width="72" align="center" prop="round9Order" ></el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="九轮转化率" width="85"  align="center" prop="round9Rate"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <template slot-scope="scope1"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                {{(scope1.row.round9Rate*100).toFixed(2)+"%"}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-table-column label="九轮客单"  width="72"  align="center" prop="round9Unit"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+             <template slot-scope="scope1"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                {{(scope1.row.round9Unit).toFixed(2)}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+             </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        <el-table-column  fixed="right" label="操作" width="150px" align="center" class-name="small-padding fixed-width"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <template slot-scope="scope"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <el-button size="mini" type="text" @click="handleDetails(scope.row)">查看</el-button> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)" v-hasPermi="['company:tcmScheduleReport:edit']">修改</el-button> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)" v-hasPermi="['company:tcmScheduleReport:remove']">删除</el-button> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            </template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        </el-table-column> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    </el-table> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+     
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    <pagination 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      v-show="total>0" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      :total="total" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      :page.sync="queryParams.pageNum" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      :limit.sync="queryParams.pageSize" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      @pagination="getList" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    <!-- 添加或修改中医档期业绩报表对话框 --> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <el-form ref="form" :model="form" :rules="rules" label-width="80px"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+       <el-form-item label="所属档期" prop="scheduleId"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            <el-select style="width: 200px" v-model="form.scheduleId" placeholder="请选择档期" clearable size="small" > 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              <el-option 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                      v-for="item in scheduleList" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                      :key="item.id" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                      :label="item.name" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                      :value="item.id" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            </el-select> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        </el-form-item> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        <el-form-item label="总进线" prop="totalNum">   
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          <el-input v-model="form.totalNum"  onkeyup="value=(value.replace(/\D/g,'')==''?'':parseInt(value))" type="number" placeholder="请输入总进线" />   
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        </el-form-item> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        <el-form-item label="注册数" prop="registerNum"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          <el-input v-model="form.registerNum" onkeyup="value=(value.replace(/\D/g,'')==''?'':parseInt(value))" type="number" placeholder="请输入注册数" />   
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        </el-form-item> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        <el-form-item label="上线数" prop="onlineNum"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          <el-input v-model="form.onlineNum" onkeyup="value=(value.replace(/\D/g,'')==''?'':parseInt(value))" type="number" placeholder="请输入上线数" /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        </el-form-item> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        <el-form-item label="完课数" prop="finishNum"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          <el-input v-model="form.finishNum"  onkeyup="value=(value.replace(/\D/g,'')==''?'':parseInt(value))" type="number" placeholder="请输入完课数" /> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        </el-form-item> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+         <el-row> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              <el-col :span="8" v-if="form.registerRate!='0'"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    <el-form-item label-width="80px" label="注册率" prop="registerRate"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                           {{form.registerRate*100+"%"}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                      <!-- <el-input v-model="form.registerRate" placeholder="请输入注册率" /> --> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    </el-form-item> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              </el-col> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+               <el-col :span="8" v-if="form.onlineRate!='0'"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                   <el-form-item label-width="80px" label="上线率" prop="onlineRate" style="margin-right:10px"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                           {{form.onlineRate*100+"%"}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    </el-form-item> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              </el-col>   
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              <el-col :span="8" v-if="form.onlineRate!='0'"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    <el-form-item label-width="80px" label="完课率" prop="onlineRate"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                         {{form.finishRate*100+"%"}} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                    </el-form-item> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              </el-col> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+         </el-row> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </el-form> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      <div slot="footer" class="dialog-footer"> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        <el-button type="primary" @click="submitForm">确 定</el-button> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        <el-button @click="cancel">取 消</el-button> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      </div> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    </el-dialog> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  </div> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+</template> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+<script> 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+import { treeselect } from "@/api/company/companyDept"; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+import Treeselect from "@riophae/vue-treeselect"; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+import "@riophae/vue-treeselect/dist/vue-treeselect.css"; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+import { listTcmScheduleReport, getTcmScheduleReport, delTcmScheduleReport, addTcmScheduleReport, updateTcmScheduleReport, exportTcmScheduleReport,listSchedule } from "@/api/company/scheduleReport"; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+export default { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  name: "TcmScheduleReport", 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  components: { Treeselect }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  data() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    return { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      // 遮罩层 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      loading: true, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      // 选中数组 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      ids: [], 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      // 非单个禁用 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      single: true, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      // 非多个禁用 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      multiple: true, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      // 显示搜索条件 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      showSearch: true, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      // 总条数 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      total: 0, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      // 中医档期业绩报表表格数据 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      tcmScheduleReportList: [], 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      scheduleList:[], 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      // 弹出层标题 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      title: "", 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      // 是否显示弹出层 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      open: false, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      dateRange: [], 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      // 查询参数 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      queryParams: { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        pageNum: 1, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        pageSize: 10, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        scheduleId: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        deptId:null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        userId: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        companyId: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        totalNum: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        registerNum: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        onlineNum: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        finishNum: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        registerRate: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        onlineRate: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        finishRate: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        totalMoney: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+         
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      users:[], 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      // 部门树选项 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      deptOptions: [], 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      // 部门名称 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      deptName: undefined, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      // 表单参数 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      form: {}, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      // 表单校验 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      rules: {  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          scheduleId: [     
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            { required: true, message: "请选择档期", trigger: "blur" } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          ], 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          totalNum: [     
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            { required: true, message: "总进线不能为空", trigger: "blur" } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          ], 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          registerNum: [ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            { required:  true, message: "注册数不能为空", trigger: "blur" }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            { required: true, validator: registerNumRule, trigger: "blur" }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            // { pattern: /^[1-9]\d*$/, message: '只能输入整数'} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          ], 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          onlineNum: [ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            { required: true, message: "上线数不能为空", trigger: "blur" }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            { required: true, validator: onlineNumRule, trigger: "blur" } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          ], 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          finishNum: [ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            { required: true, message: "完课数不能为空", trigger: "blur" }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            { required: true, validator: finishNumRule, trigger: "blur" } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          ], 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    }; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  watch:{ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    'form.registerNum':function(newVal,oldVal){ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        console.log('newVal->',newVal) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        console.log('oldVal->',oldVal) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        this.form.registerRate=0; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        if(!!newVal && Number(newVal)<=this.form.totalNum){ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+           this.form.registerRate=(newVal/this.form.totalNum*1.0).toFixed(2); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    'form.onlineNum':function(newVal,oldVal){ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        console.log('newVal->',newVal) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        console.log('oldVal->',oldVal) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        if(!!newVal){ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+           this.form.onlineRate=(newVal/this.form.registerNum*1.0).toFixed(2); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+         
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    'form.finishNum':function(newVal,oldVal){ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        console.log('newVal->',newVal) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        console.log('oldVal->',oldVal) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        if(!!newVal){ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+           this.form.finishRate=(newVal/this.form.registerNum*1.0).toFixed(2);  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+         
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  created() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    this.getTreeselect(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    this.getListSchedule(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    this.getList(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  methods: { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    calcRegister(){ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+         
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    calcOnline(){ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    calcFinish(){ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    getTreeselect() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        treeselect().then((response) => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+           this.deptOptions = response.data; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        }); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    getListSchedule() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        this.loading = true; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        listSchedule().then(response => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            this.scheduleList = response.rows; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        }); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    /** 查询中医档期业绩报表列表 */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    getList() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      this.loading = true; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      listTcmScheduleReport(this.addDateRange(this.queryParams,this.dateRange)).then(response => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          this.tcmScheduleReportList = response.rows; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          this.total = response.total; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          this.loading = false; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      }); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    // 取消按钮 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    cancel() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      this.open = false; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      this.reset(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    // 表单重置 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    reset() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      this.form = { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        id: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        scheduleId: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        userId: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        companyId: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        totalNum: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        registerNum: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        onlineNum: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        finishNum: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        registerRate: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        onlineRate: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        finishRate: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        totalMoney: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        totalOrder: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        targetMoney: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        targetRate: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round1Money: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round1Order: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round1Rate: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round1Unit: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round2Money: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round2Order: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round2Rate: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round2Unit: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round3Money: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round3Order: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round3Rate: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round3Unit: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round4Money: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round4Order: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round4Rate: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round4Unit: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round5Money: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round5Order: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round5Rate: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round5Unit: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round6Money: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round6Order: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round6Rate: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round6Unit: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round7Money: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round7Order: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round7Rate: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round7Unit: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round8Money: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round8Order: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round8Rate: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round8Unit: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round9Money: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round9Order: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round9Rate: null, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        round9Unit: null 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      }; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      this.resetForm("form"); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    /** 搜索按钮操作 */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    handleQuery() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      this.queryParams.pageNum = 1; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      this.getList(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    /** 重置按钮操作 */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    resetQuery() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      this.resetForm("queryForm"); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      this.handleQuery(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    // 多选框选中数据 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    handleSelectionChange(selection) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      this.ids = selection.map(item => item.id) 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      this.single = selection.length!==1 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      this.multiple = !selection.length 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    /** 新增按钮操作 */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    handleAdd() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      this.reset(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      this.open = true; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      this.title = "添加中医档期业绩报表"; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    /** 修改按钮操作 */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    handleUpdate(row) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      this.reset(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      const id = row.id || this.ids 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      getTcmScheduleReport(id).then(response => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        this.form = response.data; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        this.open = true; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        this.title = "修改中医档期业绩报表"; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      }); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    /** 提交按钮 */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    submitForm() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      this.$refs["form"].validate(valid => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        if (valid) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          if (this.form.id != null) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            updateTcmScheduleReport(this.form).then(response => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              if (response.code === 200) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                this.msgSuccess("修改成功"); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                this.open = false; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                this.getList(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            }); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          } else { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            addTcmScheduleReport(this.form).then(response => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              if (response.code === 200) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                this.msgSuccess("新增成功"); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                this.open = false; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+                this.getList(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+              } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            }); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      }); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    /** 删除按钮操作 */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    handleDelete(row) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      const ids = row.id || this.ids; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      this.$confirm('是否确认删除中医档期业绩报表编号为"' + ids + '"的数据项?', "警告", { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          confirmButtonText: "确定", 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          cancelButtonText: "取消", 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          type: "warning" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        }).then(function() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          return delTcmScheduleReport(ids); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        }).then(() => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          this.getList(); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          this.msgSuccess("删除成功"); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        }).catch(function() {}); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    handleDetails(row){ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        this.$router.push({path:'/schedule/report/add',query:{"scheduleId":row.scheduleId,"reportId":row.id}}); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    }, 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    /** 导出按钮操作 */ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    handleExport() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      const queryParams = this.queryParams; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+      this.$confirm('是否确认导出所有中医档期业绩报表数据项?', "警告", { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          confirmButtonText: "确定", 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          cancelButtonText: "取消", 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          type: "warning" 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        }).then(function() { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          return exportTcmScheduleReport(queryParams); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        }).then(response => { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+          this.download(response.msg); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        }).catch(function() {}); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+  } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+}; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+</script> 
			 |