|
@@ -57,11 +57,11 @@
|
|
|
|
|
|
|
|
|
<el-table v-loading="loading" :data="tcmScheduleReportList" @selection-change="handleSelectionChange">
|
|
|
- <el-table-column label="档期" align="center" prop="scheduleName" />
|
|
|
- <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 fixed label="档期" align="center" prop="scheduleName" />
|
|
|
+ <el-table-column fixed label="总进线" width="60" align="center" prop="totalNum" />
|
|
|
+ <el-table-column fixed label="注册数" width="60" align="center" prop="registerNum" />
|
|
|
+ <el-table-column fixed label="上线数" width="60" align="center" prop="onlineNum" />
|
|
|
+ <el-table-column fixed label="完课数" width="60" align="center" prop="finishNum" />
|
|
|
<el-table-column label="注册率" width="80" align="center" prop="registerRate" >
|
|
|
<template slot-scope="scope">
|
|
|
{{ renderTotalVal(scope.row,0) }}
|
|
@@ -82,22 +82,22 @@
|
|
|
{{!scope.row.money?0:(scope.row.money).toFixed(2)}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="累计总业绩" width="90" align="center" prop="totalMoney" >
|
|
|
+ <el-table-column fixed="right" 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" >
|
|
|
+ <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" >
|
|
|
+ <el-table-column fixed="right" 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" >
|
|
|
+ <el-table-column fixed="right" label="目标完成率" width="90" align="center" prop="targetRate" >
|
|
|
<template slot-scope="scope">
|
|
|
{{ renderTotalVal(scope.row,3) }}
|
|
|
</template>
|