From f294efb8c01ad8b0704a92d51c14dbd55d898874 Mon Sep 17 00:00:00 2001
From: zouyu <2723363702@qq.com>
Date: 星期四, 23 十月 2025 16:49:46 +0800
Subject: [PATCH] 拆分原材料和外购成品的业务流程(报检、下单、检验)

---
 src/views/business/inspectionTask/index.vue |   30 ++++++++++++++++++++++++++----
 1 files changed, 26 insertions(+), 4 deletions(-)

diff --git a/src/views/business/inspectionTask/index.vue b/src/views/business/inspectionTask/index.vue
index 1cdc196..39e56b8 100644
--- a/src/views/business/inspectionTask/index.vue
+++ b/src/views/business/inspectionTask/index.vue
@@ -3,6 +3,11 @@
     <div style="height: 100%">
       <div class="search">
         <el-form :model="queryParams" ref="queryParams" size="small" :inline="true">
+          <el-form-item label="鎵瑰彿" prop="updateBatchNo" v-if="tabIndex===1">
+            <el-input v-model="queryParams.updateBatchNo" clearable placeholder="璇疯緭鍏�" size="small"
+                      @keyup.enter.native="refreshTable()">
+            </el-input>
+          </el-form-item>
           <el-form-item label="濮旀墭缂栧彿" prop="entrustCode">
             <el-input v-model="queryParams.entrustCode" clearable placeholder="璇疯緭鍏�" size="small"
                       @keyup.enter.native="refreshTable()"></el-input>
@@ -61,9 +66,10 @@
                 )"
                        @click="handleConnect(scope.row)">浜ゆ帴</el-button>
             <el-button type="text" size="small" @click="viewInspectInfo(scope.row)">鍘熷璁板綍</el-button>
-            <el-popover placement="bottom" trigger="hover" style="margin-left: 6px">
+            <el-popover placement="bottom" trigger="hover" style="margin-left: 6px" :disabled="(scope.row.insState != 3 || scope.row.userName == null ||(scope.row.userName && !scope.row.userName.includes(nickName)))">
               <template #reference>
-                <el-button link type="text" size="small">鏇村</el-button>
+                <el-button link type="text" size="small" :disabled="(scope.row.insState != 3 || scope.row.userName == null ||
+                  (scope.row.userName && !scope.row.userName.includes(nickName)))">鏇村</el-button>
               </template>
               <div>
                 <el-button :disabled="(scope.row.insState != 3 || scope.row.userName == null ||
@@ -279,6 +285,7 @@
       tabList: [
         { label: "濮旀墭", value: 0 },
         { label: "鍘熸潗鏂�", value: 1 },
+        { label: "澶栬喘", value: 2 },
       ],
       active: 1,
       tabIndex: 0,
@@ -342,6 +349,11 @@
       inspectionTaskState: [],
       tableData: [],
       column: [
+        {
+          label: "鎵瑰彿",
+          prop: "updateBatchNo",
+          width: "120px",
+        },
         {
           label: "濮旀墭缂栧彿",
           prop: "entrustCode",
@@ -539,7 +551,8 @@
       lookTableLoading: false,
       // 鏁版嵁鏌ョ湅鐩稿叧瀛楁---缁撴潫
       retestVisible: false,
-      upIndex: 0
+      upIndex: 0,
+      tabLabel: ''
     };
   },
   mounted() {
@@ -635,7 +648,14 @@
     },
     refreshTable(e) {
       this.page.current = 1;
-      this.queryParams.typeSource = this.tabIndex;
+      let typeSource = null;
+      if(this.tabIndex===1){
+          typeSource=1
+      }else if(this.tabIndex===2){
+        typeSource = 0
+      }
+      this.queryParams.tabLabel = this.tabLabel;
+      this.queryParams.typeSource = typeSource;
       this.getList();
     },
     // 涓嬭浇鎶ュ憡
@@ -722,6 +742,7 @@
     },
     handleTab(m, i) {
       this.tabIndex = i;
+      this.tabLabel = m.label;
       this.queryParams.sonLaboratory = "";
       this.refreshTable();
     },
@@ -793,6 +814,7 @@
           state: this.state,
           typeSource: this.typeSource,
           orderId: this.orderId,
+          isSplit: row.isSplitOrder
         },
       });
     },

--
Gitblit v1.9.3