From bb1edca3bf351497495e270014b229605e4460dc Mon Sep 17 00:00:00 2001
From: licp <lichunping@guanfang.com.cn>
Date: 星期四, 17 十月 2024 09:24:51 +0800
Subject: [PATCH] 修改下单、电路试验多样品时的bug

---
 src/components/do/b1-inspect-order-plan/circuit-parameters2.vue |   29 ++++++++++++++++++++++++-----
 1 files changed, 24 insertions(+), 5 deletions(-)

diff --git a/src/components/do/b1-inspect-order-plan/circuit-parameters2.vue b/src/components/do/b1-inspect-order-plan/circuit-parameters2.vue
index 84f89f5..5afe6f5 100644
--- a/src/components/do/b1-inspect-order-plan/circuit-parameters2.vue
+++ b/src/components/do/b1-inspect-order-plan/circuit-parameters2.vue
@@ -116,7 +116,7 @@
               </div>
             </el-col>
             <el-col :span="2">
-              <div style="text-align: center;" :class="{red:n.result===0,green:n.result===1}">{{ n.result===0?'涓嶅悎鏍�':(n.result===1?'鍚堟牸':'寰呭畾') }}
+              <div style="text-align: center;" :class="{red:n.result===0,green:n.result===1}">{{ n.result===0?'涓嶅悎鏍�':(n.result===1?'鍚堟牸':(n.result===3?'涓嶅垽瀹�':'寰呭畾')) }}
               </div>
             </el-col>
           </el-row>
@@ -167,7 +167,7 @@
               </div>
             </el-col>
             <el-col :span="2">
-              <div style="text-align: center;" :class="{red:n.result===0,green:n.result===1}">{{ n.result===0?'涓嶅悎鏍�':(n.result===1?'鍚堟牸':'寰呭畾') }}
+              <div style="text-align: center;" :class="{red:n.result===0,green:n.result===1}">{{ n.result===0?'涓嶅悎鏍�':(n.result===1?'鍚堟牸':(n.result===3?'涓嶅垽瀹�':'寰呭畾')) }}
               </div>
             </el-col>
           </el-row>
@@ -275,7 +275,7 @@
     },
     insProduct:{
       deep:true,
-      handler:()=>{
+      handler:function(val){
         this.initData()
       }
     }
@@ -283,7 +283,6 @@
   mounted() {
     this.getTypeDicts()
     this.initData()
-    console.log(2222,this.currentNum)
   },
   methods: {
     // 瀛楀吀鑾峰彇鏁版嵁
@@ -296,11 +295,12 @@
     },
     // 鍒濆鍖栨暟鎹�
     initData(){
+      this.allBandList = []
       // 澶勭悊椤圭洰
       this.insProductNew = JSON.parse(JSON.stringify(this.insProduct)).filter(m=>m.inspectionItem.includes('鐢佃矾璇曢獙'))
       this.insProductNew.forEach(async item => {
         // 鑾峰彇璁惧鍒楄〃
-        item.equipOptions = await this.getEquipOptions(item)
+        item.equipOptions = []
       })
       if(this.insProductNew[0].insProductResult2&&this.insProductNew[0].insProductResult2.length>0){
         // 宸茬粡瀛樺湪鍊兼椂锛岃祴鍊�
@@ -384,6 +384,25 @@
           // 璧嬪�艰澶�
           item.equipName = ''
           item.equipValue = ''
+          this.portList = [
+            {
+              value:'1',
+            },
+            {
+              value:'2',
+            },
+            {
+              value:'3',
+            },
+            {
+              value:'4',
+            },
+          ]
+          this.angleList = [
+            {
+              value:''
+            }
+          ]
           // 璧嬪�肩鍙e拰瑙掑害
           item.portList = JSON.parse(JSON.stringify(this.portList))
           item.angleList = JSON.parse(JSON.stringify(this.angleList))

--
Gitblit v1.9.3