From 61282c106068d9a792e1b084746e2d6b9a997b99 Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期二, 15 九月 2026 15:29:52 +0800
Subject: [PATCH] 新疆——新聚lims 1.不需要判定要求、检测方法、检验结果、结论 2.设备不需要绑定每个检验子项,只需要绑定当前的的检验委托单 3.判定结果检测的时候不要出现,复核的时候才判断选择最终结果是否合格

---
 src/views/business/inspectionTask/index.vue |   85 +++++++++++++++++-------------------------
 1 files changed, 34 insertions(+), 51 deletions(-)

diff --git a/src/views/business/inspectionTask/index.vue b/src/views/business/inspectionTask/index.vue
index 4ac266e..37b7124 100644
--- a/src/views/business/inspectionTask/index.vue
+++ b/src/views/business/inspectionTask/index.vue
@@ -13,13 +13,13 @@
                          :value="a.value"></el-option>
             </el-select>
           </el-form-item>
-          <el-form-item label="鐗╂枡灞炴��" prop="materialProp">
-            <el-select clearable size="small" v-model="queryParams.materialProp" style="width: 100%">
-              <el-option v-for="dict in dict.type.material_prop_type" :key="dict.value" :label="dict.label"
-                         :value="dict.value">
-              </el-option>
-            </el-select>
-          </el-form-item>
+<!--          <el-form-item label="鐗╂枡灞炴��" prop="materialProp">-->
+<!--            <el-select clearable size="small" v-model="queryParams.materialProp" style="width: 100%">-->
+<!--              <el-option v-for="dict in dict.type.material_prop_type" :key="dict.value" :label="dict.label"-->
+<!--                         :value="dict.value">-->
+<!--              </el-option>-->
+<!--            </el-select>-->
+<!--          </el-form-item>-->
           <el-form-item>
             <el-button size="mini" type="primary" @click="refreshTable()">鏌ヨ</el-button>
             <el-button size="mini" @click="refresh()">閲嶇疆</el-button>
@@ -29,7 +29,7 @@
       <div class="center" v-loading="tableLoading">
         <div class="center-options">
           <div style="display: flex; align-items: center">
-            <span style="font-size: 14px">璇曢獙瀹ょ绫�:</span>
+            <span style="font-size: 14px">璇曢獙瀹�:</span>
             <ul class="tab">
               <li v-for="(m, i) in tabList" :key="i" :class="{ active: i == tabIndex }" @click="handleTab(m, i)">
                 {{ m.label.replace("璇曢獙瀹�", "") }}
@@ -286,8 +286,8 @@
       claimVisible: false,
       tabList: [
         { label: "濮旀墭", value: -1 },
-        { label: "鍘熸潗鏂�", value: 1 },
-        { label: "澶栬喘", value: 0 },
+        // { label: "鍘熸潗鏂�", value: 1 },
+        // { label: "澶栬喘", value: 0 },
       ],
       active: 1,
       tabIndex: 0,
@@ -360,21 +360,6 @@
         },
         { label: "鏍峰搧鍚嶇О", prop: "sample", width: "160px" },
         {
-          label: '鐗╂枡灞炴��',
-          prop: 'materialProp',
-          formatData: (params) => {
-            if (!params) return null
-
-            for (let i = 0; i < this.dict.type.material_prop_type.length; i++) {
-              const item = this.dict.type.material_prop_type[i]
-              if (item.value == params) {
-                return item.label
-              }
-            }
-            return null
-          }
-        },
-        {
           label: "涓嬪崟绫诲埆",
           prop: "typeSource",
           width: "100px",
@@ -389,30 +374,29 @@
             }
           },
         },
-        { label: "鏍峰搧鍨嬪彿", prop: "sampleModel", width: "120px" },
-        {
-          label: "绱ф�ョ▼搴�",
-          prop: "type",
-          dataType: "tag",
-          formatData: (params) => {
-            if (params == 0) {
-              return '鏅��'
-            } else if (params == 1) {
-              return '浼樺厛'
-            } else {
-              return '绱ф��'
-            }
-          },
-          formatType: (params) => {
-            if (params == 0) {
-              return 'success'
-            } else if (params == 1) {
-              return 'warning'
-            } else {
-              return 'danger'
-            }
-          }
-        },
+        // {
+        //   label: "绱ф�ョ▼搴�",
+        //   prop: "type",
+        //   dataType: "tag",
+        //   formatData: (params) => {
+        //     if (params == 0) {
+        //       return '鏅��'
+        //     } else if (params == 1) {
+        //       return '浼樺厛'
+        //     } else {
+        //       return '绱ф��'
+        //     }
+        //   },
+        //   formatType: (params) => {
+        //     if (params == 0) {
+        //       return 'success'
+        //     } else if (params == 1) {
+        //       return 'warning'
+        //     } else {
+        //       return 'danger'
+        //     }
+        //   }
+        // },
         {
           label: "妫�楠岀被鍨�",
           prop: "orderType",
@@ -823,8 +807,7 @@
           sonLaboratory: this.sonLaboratory,
           state: this.state,
           typeSource: this.typeSource,
-          orderId: this.orderId,
-          isSplit: row.isSplitOrder
+          orderId: this.orderId
         },
       });
     },

--
Gitblit v1.9.3