From 5e1a7961fdde6cf8b4ac12a3ad11dad6ca7474e2 Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期二, 04 三月 2025 17:22:12 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/dev' into dev
---
src/views/business/reportPreparation/index.vue | 16 ++++++++++++----
1 files changed, 12 insertions(+), 4 deletions(-)
diff --git a/src/views/business/reportPreparation/index.vue b/src/views/business/reportPreparation/index.vue
index a64b543..9ca8094 100644
--- a/src/views/business/reportPreparation/index.vue
+++ b/src/views/business/reportPreparation/index.vue
@@ -403,15 +403,19 @@
formatData: (params) => {
if (params == 0) {
return "涓嶉�氳繃";
- } else {
+ } else if (params == 1) {
return "閫氳繃";
+ } else {
+ return null
}
},
formatType: (params) => {
if (params == 0) {
return "danger";
- } else {
+ } else if (params == 1) {
return "success";
+ } else {
+ return null
}
},
},
@@ -426,15 +430,19 @@
formatData: (params) => {
if (params == 0) {
return "涓嶆壒鍑�";
- } else {
+ } else if (params == 1) {
return "鎵瑰噯";
+ } else {
+ return null
}
},
formatType: (params) => {
if (params == 0) {
return "danger";
- } else {
+ } else if (params == 1) {
return "success";
+ } else {
+ return null
}
},
},
--
Gitblit v1.9.3