From e6e3ff9166c219af461bad39edf0019db7c65315 Mon Sep 17 00:00:00 2001
From: zouyu <2723363702@qq.com>
Date: 星期三, 29 十月 2025 15:05:36 +0800
Subject: [PATCH] 外购成品报检相关问题调整

---
 src/views/business/inspectionTask/index.vue |   16 +++++++++++++---
 1 files changed, 13 insertions(+), 3 deletions(-)

diff --git a/src/views/business/inspectionTask/index.vue b/src/views/business/inspectionTask/index.vue
index 75825d7..246b94b 100644
--- a/src/views/business/inspectionTask/index.vue
+++ b/src/views/business/inspectionTask/index.vue
@@ -3,7 +3,7 @@
     <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-form-item label="鎵瑰彿" prop="updateBatchNo" v-if="tabIndex!==0">
             <el-input v-model="queryParams.updateBatchNo" clearable placeholder="璇疯緭鍏�" size="small"
                       @keyup.enter.native="refreshTable()">
             </el-input>
@@ -285,6 +285,7 @@
       tabList: [
         { label: "濮旀墭", value: 0 },
         { label: "鍘熸潗鏂�", value: 1 },
+        { label: "澶栬喘", value: 2 },
       ],
       active: 1,
       tabIndex: 0,
@@ -550,7 +551,8 @@
       lookTableLoading: false,
       // 鏁版嵁鏌ョ湅鐩稿叧瀛楁---缁撴潫
       retestVisible: false,
-      upIndex: 0
+      upIndex: 0,
+      tabLabel: ''
     };
   },
   mounted() {
@@ -646,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();
     },
     // 涓嬭浇鎶ュ憡
@@ -733,6 +742,7 @@
     },
     handleTab(m, i) {
       this.tabIndex = i;
+      this.tabLabel = m.label;
       this.queryParams.sonLaboratory = "";
       this.refreshTable();
     },

--
Gitblit v1.9.3