|
|
@@ -514,6 +514,19 @@
|
|
|
<span>¥{{ scope.row.deptPremiumsLevelFive }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
+ <el-table-column prop="externalProportion" label="代客录单扣减比例">
|
|
|
+ <template slot-scope="scope" >
|
|
|
+ <span v-if="scope.row.externalProportion">{{ scope.row.externalProportion }}%</span>
|
|
|
+ <span v-else>-</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column prop="externalPremiums" label="代客录单扣减金额">
|
|
|
+ <template slot-scope="scope" >
|
|
|
+ <span v-if="scope.row.externalPremiums">¥{{ scope.row.externalPremiums }}</span>
|
|
|
+ <span v-else>-</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+
|
|
|
<el-table-column prop="profitMarginPremiums" label="利润差值">
|
|
|
<template slot-scope="scope">
|
|
|
<span>¥{{ scope.row.profitMarginPremiums }}</span>
|