From f409f83de7f803178715f128f275d77741c3072d Mon Sep 17 00:00:00 2001
From: WXL <wl_5969728@163.com>
Date: 星期一, 08 六月 2026 09:11:49 +0800
Subject: [PATCH] 省人民维护申请表增加案例状态
---
src/views/project/fund/medicalCostApply/index.vue | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/views/project/fund/medicalCostApply/index.vue b/src/views/project/fund/medicalCostApply/index.vue
index a55a221..e176666 100644
--- a/src/views/project/fund/medicalCostApply/index.vue
+++ b/src/views/project/fund/medicalCostApply/index.vue
@@ -548,7 +548,7 @@
id: 0,
businessType: "3",
operationType: "add",
- curCase: this.curCase
+ curCase: this.curCase,
}
});
} else {
@@ -1469,7 +1469,7 @@
}
},
rowClassName({ row, column, rowIndex, columnIndex }) {
- if (row.recordstatus == -1 && row.backflowlevel >= 0) {
+ if (row.recordstatus == -1 && row.backflowlevel != null) {
return "error-row";
}
return "";
@@ -1479,7 +1479,7 @@
</script>
<style lang="scss" scoped>
/* @import url(); 寮曞叆鍏叡css绫� */
-.button-delete{
+.button-delete {
color: rgb(236, 69, 69);
}
::v-deep.el-table .error-row {
--
Gitblit v1.9.3