Commit ad9956dd authored by youjie's avatar youjie

no message

parent c968294d
...@@ -33,14 +33,14 @@ ...@@ -33,14 +33,14 @@
</span> </span>
</template> </template>
<template v-else> <template v-else>
<span style="font-size: 16px;" :style="{'color':PredictData.LimitNum>PredictData.LureNum?'red':'green'}">{{PredictData.LimitNum}}</span> <span style="font-size: 16px;" :style="{'color':PredictData.LureNum>PredictData.LimitNum?'red':'green'}">{{PredictData.LureNum}}</span>
<template v-if="PredictData.LureNum>0"> <template v-if="PredictData.LimitNum>0">
<span style="font-size: 16px;"> /</span> <span style="font-size: 16px;"> /</span>
<span style="font-size: 16px;"> <span style="font-size: 16px;">
{{PredictData.LureNum}} {{PredictData.LimitNum}}
</span> </span>
</template> </template>
<span style="color: red;margin-left: 5px;font-size: 14px;" v-if="PredictData.LureNum>0&&PredictData.LureNum>PredictData.LimitNum"> <span style="color: red;margin-left: 5px;font-size: 14px;" v-if="PredictData.LimitNum>0&&PredictData.LimitNum>PredictData.LureNum">
目标未达成仍需努力 目标未达成仍需努力
</span> </span>
</template> </template>
......
...@@ -108,6 +108,14 @@ ...@@ -108,6 +108,14 @@
label="当期提成" label="当期提成"
show-overflow-tooltip> show-overflow-tooltip>
</el-table-column> </el-table-column>
<el-table-column
prop="LimitCommission"
label="未达标提成"
show-overflow-tooltip>
<template slot-scope="scope">
{{scope.row.LimitCommission>0?scope.row.LimitCommission:'-'}}
</template>
</el-table-column>
<el-table-column <el-table-column
label="提成比例" label="提成比例"
show-overflow-tooltip> show-overflow-tooltip>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment