Commit 1459427f authored by liudong1993's avatar liudong1993

1

parent 5dccd94d
......@@ -222,11 +222,19 @@
:header-cell-style="getRowClass"
>
<el-table-column fixed prop="CreateTime" label="报名日期">
<template slot-scope="scope">
<div v-if="scope.row.OrderId === 0">
合计
</div>
<div v-else>
{{scope.row.CreateTime}}
</div>
</template>
</el-table-column>
<el-table-column fixed prop="EnterName" label="业务员">
<template slot-scope="scope">
<div v-if="scope.row.OrderId === 0">
合计
-
</div>
<div v-else>
{{scope.row.EnterName}}
......@@ -743,7 +751,7 @@ export default {
},
//改变状态背景颜色
columenStyle({columnIndex}){
if(columnIndex == 7 ){
if(columnIndex == 8 ){
return "background:#f0f5fb"
}
},
......
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