|
@@ -103,7 +103,7 @@
|
|
|
v-hasPermi="['company:tcmScheduleReport:export']"
|
|
|
>导出</el-button>
|
|
|
</el-col>
|
|
|
- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
+ <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
</el-row>
|
|
|
|
|
|
<el-table v-loading="loading" :data="tcmScheduleReportList" @selection-change="handleSelectionChange">
|
|
@@ -124,14 +124,14 @@
|
|
|
{{(scope.row.registerNum/scope.row.totalNum*100.0).toFixed(3)+"%"}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="上线率" align="center" prop="onlineRate" >
|
|
|
+ <el-table-column label="进线上线率" align="center" prop="onlineRate" >
|
|
|
<template slot-scope="scope">
|
|
|
- {{(scope.row.onlineNum/scope.row.registerNum*100.0).toFixed(3)+"%"}}
|
|
|
+ {{(scope.row.onlineNum/scope.row.totalNum*100.0).toFixed(3)+"%"}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="完课率" align="center" prop="finishRate" >
|
|
|
+ <el-table-column label="进线完课率" align="center" prop="finishRate" >
|
|
|
<template slot-scope="scope">
|
|
|
- {{(scope.row.finishNum/scope.row.registerNum*100.0).toFixed(3)+"%"}}
|
|
|
+ {{(scope.row.finishNum/scope.row.totalNum*100.0).toFixed(3)+"%"}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="累计总业绩" width="90" align="center" prop="totalMoney" >
|
|
@@ -154,12 +154,18 @@
|
|
|
{{ scope.row.targetMoney>0?(scope.row.totalMoney/scope.row.targetMoney*100.0).toFixed(3)+"%":"0%"}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="创建时间" align="center" prop="createTime" width="180">
|
|
|
+ <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="更新时间" align="center" prop="updateTime" width="100">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <span>{{ parseTime(scope.row.updateTime) }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+
|
|
|
<!--
|
|
|
<el-table-column label="一轮业绩" align="center" prop="round1Money" />
|
|
|
<el-table-column label="一轮单数" align="center" prop="round1Order" />
|