From d2e867966539004b6b5a73ae3566a659ac6f8b6d Mon Sep 17 00:00:00 2001
From: zouyu <2723363702@qq.com>
Date: 星期四, 30 十月 2025 11:55:34 +0800
Subject: [PATCH] 检验任务数据分类查询问题修复
---
src/views/business/inspectionReview/index.vue | 10 ++++++----
1 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/src/views/business/inspectionReview/index.vue b/src/views/business/inspectionReview/index.vue
index 6e3eb15..2bce1d0 100644
--- a/src/views/business/inspectionReview/index.vue
+++ b/src/views/business/inspectionReview/index.vue
@@ -105,10 +105,12 @@
width: "100px",
dataType: "tag",
formatData: (params) => {
- if (params == 0 ) {
- return "鎴愬搧涓嬪崟";
- } else {
+ if (params == 0) {
+ return "澶栬喘涓嬪崟";
+ } else if(params==1) {
return "鍘熸潗鏂欎笅鍗�";
+ }else{
+ return "濮旀墭涓嬪崟";
}
},
},
@@ -247,7 +249,7 @@
sonLaboratoryList: [],
typeSourceList: [
{ label: '濮旀墭涓嬪崟', value: -1 },
- { label: '鎴愬搧涓嬪崟', value: 0 },
+ { label: '澶栬喘涓嬪崟', value: 0 },
{ label: '鍘熸潗鏂欎笅鍗�', value: 1 },
],
isCopper: null,
--
Gitblit v1.9.3