From 9e4ea500c17d7c4749103fb62838efd6cbff09ed Mon Sep 17 00:00:00 2001
From: gaoluyang <gaoluyang@rengu.cc>
Date: 星期五, 28 六月 2024 11:54:22 +0800
Subject: [PATCH] 型号参数默认赋值给检验项目的变量

---
 src/components/do/b1-ins-order/fiberoptic-config.vue |   42 +++++++++++++++++++++---------------------
 1 files changed, 21 insertions(+), 21 deletions(-)

diff --git a/src/components/do/b1-ins-order/fiberoptic-config.vue b/src/components/do/b1-ins-order/fiberoptic-config.vue
index 1377575..768bde7 100644
--- a/src/components/do/b1-ins-order/fiberoptic-config.vue
+++ b/src/components/do/b1-ins-order/fiberoptic-config.vue
@@ -53,7 +53,7 @@
               </el-table-column>
               <el-table-column label="绠¤壊鏍�" show-overflow-tooltip>
                 <template slot-scope="scope">
-                  <el-select v-model="scope.row.color" size="mini" :disabled="active!=1">
+                  <el-select v-model="scope.row.color" size="mini" :disabled="active!=1" allow-create filterable >
                     <el-option v-for="(color,i) in colors" :key="i" :label="color.lable"
                       :value="color.value"></el-option>
                   </el-select>
@@ -187,7 +187,7 @@
               </el-table-column>
               <el-table-column prop="color" label="鍏夌氦鑹叉爣" width="120">
                 <template slot-scope="scope">
-                  <el-select v-model="scope.row.color" size="mini" :disabled="active!=1">
+                  <el-select v-model="scope.row.color" size="mini" :disabled="active!=1" allow-create filterable >
                     <el-option v-for="(color,i) in colors" :key="i" :label="color.lable"
                       :value="color.value"></el-option>
                   </el-select>
@@ -588,12 +588,12 @@
             this.$message.error('鏈�夋嫨鍏夌氦甯�')
             return
           }
-          this.selectFibers.forEach(a => {
+          this.selectFibers.forEach((a,index) => {
             a.fiber = []
             for (var i = 0; i < parseInt(a.num); i++) {
               let fiber = {
                 bushColor: a.color,
-                color: colors2[i].label,
+                color: colors2[(i+(parseInt(a.num)*index))>colors2.length?0:i+(parseInt(a.num)*index)*index].label,
                 model: model,
                 standard: standard,
                 productList: this.HaveJson(this.productList)
@@ -603,12 +603,12 @@
             }
           })
         } else {
-          this.selectBushing.forEach(a => {
+          this.selectBushing.forEach((a,index) => {
             a.fiber = []
             for (var i = 0; i < parseInt(a.testNum); i++) {
               let fiber = {
                 bushColor: a.color,
-                color: colors2[i].label,
+                color: colors2[(i+(parseInt(a.testNum))*index)>colors2.length?0:i+(parseInt(a.testNum))*index].label,
                 model: model,
                 standard: standard,
                 productList: this.HaveJson(this.productList)
@@ -765,12 +765,12 @@
               this.bsm2 = false
             }
           }
-          if (p.ask.includes('RTS')&&p.state === 1) {
-            p.rts = ''
-            this.bsm3Val = ''
-            this.bsm3Dia = true
-            this.bsmRow3.push(p)
-          }
+          // if (p.ask.includes('RTS')&&p.state === 1) {
+          //   p.rts = ''
+          //   this.bsm3Val = ''
+          //   this.bsm3Dia = true
+          //   this.bsmRow3.push(p)
+          // }
         })
 
         if (e.length > 0) {
@@ -842,15 +842,15 @@
         }else{
           this.bsm1Dia = false
         }
-        if (row.ask.includes('RTS')&&row.state === 1) {
-          this.bsmRow3 = null;
-          row.rts = ''
-          this.bsm3Val = ''
-          this.bsm3Dia = true
-          this.bsmRow3 = row
-        }else{
-          this.bsm3Dia = false
-        }
+        // if (row.ask.includes('RTS')&&row.state === 1) {
+        //   this.bsmRow3 = null;
+        //   row.rts = ''
+        //   this.bsm3Val = ''
+        //   this.bsm3Dia = true
+        //   this.bsmRow3 = row
+        // }else{
+        //   this.bsm3Dia = false
+        // }
       },
       computationalPairing(n){
         const nums = [];

--
Gitblit v1.9.3