|
|
@@ -83,12 +83,17 @@
|
|
|
{{formaNum(scope.row.accumulatedArrears)}}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column prop="overIncome" label="超额完成收入">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{formaNum(scope.row.overIncome)}}
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
<el-table-column prop="percentage" label="收入完成比率">
|
|
|
<template slot-scope="scope">
|
|
|
<span v-if="scope.row.percentage<50" style="color:#F56C6C">
|
|
|
{{scope.row.percentage}}%
|
|
|
</span>
|
|
|
- <span v-if="scope.row.percentage>50&&scope.row.percentage<100" style="color:#E6A23C">
|
|
|
+ <span v-if="scope.row.percentage>=50&&scope.row.percentage<100" style="color:#E6A23C">
|
|
|
{{scope.row.percentage}}%
|
|
|
</span>
|
|
|
<span v-if="scope.row.percentage==100" style="color:#67C23A">
|