|
@@ -119,7 +119,14 @@
|
119
|
119
|
prop="billStatus"
|
120
|
120
|
label="缴费状态"
|
121
|
121
|
align="center">
|
122
|
|
- <template slot-scope="scope">{{ showBillStatus(scope.row.billStatus) }}</template>
|
|
122
|
+ <template slot-scope="scope">
|
|
123
|
+ <span v-if="scope.row.billStatus === '0'" style="color: red;">
|
|
124
|
+ {{ showBillStatus(scope.row.billStatus) }}
|
|
125
|
+ </span>
|
|
126
|
+ <span v-else>
|
|
127
|
+ {{ showBillStatus(scope.row.billStatus) }}
|
|
128
|
+ </span>
|
|
129
|
+ </template>
|
123
|
130
|
</el-table-column>
|
124
|
131
|
<el-table-column
|
125
|
132
|
prop="payName"
|