瀏覽代碼

修复 bug

weiximei 6 年之前
父節點
當前提交
a6f317005a
共有 1 個文件被更改,包括 8 次插入1 次删除
  1. 8
    1
      VUECODE/smart-property-manage/src/views/bill/info/index.vue

+ 8
- 1
VUECODE/smart-property-manage/src/views/bill/info/index.vue 查看文件

@@ -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"