From ae8b90c76912a7796b7c23c78f1a59bac434457d Mon Sep 17 00:00:00 2001
From: licp <lichunping@guanfang.com.cn>
Date: 星期一, 14 十月 2024 13:37:15 +0800
Subject: [PATCH] 完成普通项目的项目检验

---
 src/components/do/b1-inspect-order-plan/Inspection.vue |  104 ++++++++++++++++++++++++++++++++++-----------------
 1 files changed, 69 insertions(+), 35 deletions(-)

diff --git a/src/components/do/b1-inspect-order-plan/Inspection.vue b/src/components/do/b1-inspect-order-plan/Inspection.vue
index 56dc04b..ce9beb9 100644
--- a/src/components/do/b1-inspect-order-plan/Inspection.vue
+++ b/src/components/do/b1-inspect-order-plan/Inspection.vue
@@ -304,6 +304,9 @@
         <el-form-item label="褰撳墠鏍峰搧浣嶆暟:">
           <el-tag v-if="currentKey">{{ `NO.${currentKey}` }}</el-tag>
         </el-form-item>
+        <el-form-item label="" v-if="insOrder.rule">
+          <el-tag>{{ !insOrder.rule.includes('涓嶈�冭檻涓嶇‘瀹氬害')?insOrder.rule.split('-')[0]+' '+insOrder.rule.split('-')[1]+'%':insOrder.rule }}</el-tag>
+        </el-form-item>
         <el-form-item label="澶囨敞:">
           <span style="color:red">{{ insOrder.remark?insOrder.remark:'-' }}</span>
         </el-form-item>
@@ -453,6 +456,20 @@
                       <i
                       v-if="currentFiberOptic" class="el-icon-caret-right table_caret" @click="caretOptic(1)"></i>
                     </div>
+                  </template>
+                  <template v-else-if="n.v.ps!=undefined && n.v.ps.value==='璇曢獙鍓嶆牱鍝佹鏌�'">
+                    <el-select class="table_input" v-model="n.v.v"
+                      :disabled="state>1|| (n.u != userId && n.u != undefined && n.u != '')" @change="(val)=>changeSampleCheck(val, n,'鍓�')">
+                      <el-option label="瀹屽ソ" :value="'瀹屽ソ'"></el-option>
+                      <el-option label="鐮存崯" :value="'鐮存崯'"></el-option>
+                    </el-select>
+                  </template>
+                  <template v-else-if="n.v.ps!=undefined && n.v.ps.value==='璇曢獙鍚庢牱鍝佹鏌�'">
+                    <el-select class="table_input" v-model="n.v.v"
+                      :disabled="state>1|| (n.u != userId && n.u != undefined && n.u != '')" @change="(val)=>changeSampleCheck(val, n,'鍚�')">
+                      <el-option label="瀹屽ソ" :value="'瀹屽ソ'"></el-option>
+                      <el-option label="鐮存崯" :value="'鐮存崯'"></el-option>
+                    </el-select>
                   </template>
                   <span v-else :style="`font-family:${n.v.ff} !important;`" v-html="getValue(n.v)" ></span>
                 </div>
@@ -1149,7 +1166,9 @@
                 resValue: null,
                 equipValue: [],
                 equipName: [],
-                insResult: null
+                insResult: null,
+                beforeCheck:null,
+                afterCheck:null,
               }
             }
           })
@@ -2163,7 +2182,9 @@
               resValue: null,
               equipValue: [],
               equipName: [],
-              insResult: null
+              insResult: null,
+              beforeCheck:null,
+              afterCheck:null,
             }
           }
         })
@@ -2211,7 +2232,9 @@
                 resValue: null,
                 equipValue: [],
                 equipName: [],
-                insResult: null
+                insResult: null,
+                beforeCheck:null,
+                afterCheck:null,
               }
             })
             // 椤甸潰鍒楄〃鏁版嵁澶勭悊
@@ -2663,6 +2686,16 @@
                 })
               }
             }
+            if (b.v.ps != undefined && b.v.ps.value === '璇曢獙鍓嶆牱鍝佹鏌�') {
+              // b.v.v = ''
+              this.$set(b.v, 'v', '' )
+              this.param[b.i].beforeCheck = b
+            }
+            if (b.v.ps != undefined && b.v.ps.value === '璇曢獙鍚庢牱鍝佹鏌�') {
+              // b.v.v = ''
+              this.$set(b.v, 'v', '' )
+              this.param[b.i].afterCheck = b
+            }
             set.add(b.r)
             // 濡傛灉妯℃澘鍒楄〃鐨勫嚱鏁板瓨鍦�,閭d箞鍔犲叆鍒癳xcel鍑芥暟鍒楄〃閲岄潰
             if (b.v.f) {
@@ -2759,10 +2792,18 @@
           } catch (e) {}
           try {
             // 鏈�缁堝�艰祴鍊�
-            this.param[a.id].resValue.v.v = this.toFixed(a.lastValue,this.param[a.id].resValue.v.ct)
+            this.param[a.id].resValue = {v:{v:a.lastValue}}
+            // this.param[a.id].resValue.v.v = this.toFixed(a.lastValue,this.param[a.id].resValue.v.ct)
             // 缁撹璧嬪��
-            this.param[a.id].insResult.v.v = a.insResult
-          } catch (e) {}
+            this.param[a.id].insResult = {v:{v:a.insResult}}
+            // this.param[a.id].insResult.v.v = a.insResult
+            // 妫�楠屽墠鏍峰搧妫�鏌ヨ祴鍊�
+            this.param[a.id].afterCheck.v.v = a.insProductResult.afterCheck
+            // 妫�楠屽悗鏍峰搧妫�鏌ヨ祴鍊�
+            this.param[a.id].beforeCheck.v.v = a.insProductResult.beforeCheck
+          } catch (e) {
+            console.log('error',e)
+          }
         })
         // 瀵筫xcel鍑芥暟杩涜澶勭悊
         this.handleExcelMethod()
@@ -2795,6 +2836,13 @@
             n.v.v = n.v.v.replace('/', '')
           }
         }
+        // 閫氫俊鐗规畩澶勭悊锛屾楠屽�煎~鍏ヤ箣鍚庣洿鎺ヤ繚瀛樻暟鎹紝鍒ゆ柇缁撴灉榛樿涓�3
+        for (var i in this.param){
+          this.param[i].insResult = {v:{v:3}}
+        }
+        this.saveInsContext(n.i)
+        return;
+        // 浠ヤ笅鏄甯哥殑鍒ゆ柇娴佺▼锛屽悗闈㈡湁闇�瑕佸垯杩涘叆姝ゆ祦绋�
         try {
           // 鍚� Worker 鍙戦�佹秷鎭紝寮�濮嬪鐞嗛�昏緫
           this.worker.postMessage(JSON.stringify({
@@ -2811,7 +2859,6 @@
         } catch (error) {
           console.log(444,error);
         }
-
         // 鐩戝惉 Worker 杩斿洖鐨勭粨鏋�
         this.worker.onmessage = (event) => {
           this.result = JSON.parse(event.data);
@@ -2824,6 +2871,7 @@
                 if(this.result.value.currentInsItemId){
                   currentInsItemId = this.result.value.currentInsItemId
                 }
+                // console.log(this.result,123);
                 // 鐗规畩澶勭悊涓�涓嬬粨璁�,浼氭湁杩欑鐗规畩鎯呭喌
                 for (var i in this.param){
                   if(this.param[i].insResult&&this.param[i].insResult.v&&this.param[i].insResult.v.v){
@@ -2835,33 +2883,6 @@
                   }
                 }
                 this.saveInsContext(currentInsItemId)
-                // 濡傛灉鏄暟閲囧彲缂栬緫杈撳叆鐨勬儏鍐�,鍙互鐩存帴淇濆瓨鏁版嵁
-                // if(this.getDataType==2){
-                //   this.saveInsContext(currentInsItemId)
-                // }else{
-                //   if(this.isGet&&!this.dataAcquisitionEidtAble){
-                //     if(this.result.value.getDataTypeId==''){
-                //       // 濡傛灉鏄暟閲囦笉鍙紪杈戣緭鍏ョ殑鎯呭喌,涓旀渶鍚庝竴涓暟閲囨病鏈夊畬鎴�,鍒欎笉淇濆瓨鏁版嵁
-                //       return
-                //     }
-                //     // 淇濆瓨鏁版嵁
-                //     setTimeout(()=>{
-                //       this.saveInsContext(currentInsItemId)
-                //     },2000)
-                //   }else if(this.isGet&&this.dataAcquisitionEidtAble){
-                //     if(this.getDataType==1){
-                //       if(this.result.value.getDataTypeId==''){
-                //         // 濡傛灉鏄暟閲囧彲缂栬緫杈撳叆鐨勬儏鍐�,涓旀渶鍚庝竴涓暟閲囨病鏈夊畬鎴�,鍒欎笉淇濆瓨鏁版嵁
-                //         return
-                //       }
-                //       this.saveInsContext(currentInsItemId)
-                //     }else{
-                //       this.saveInsContext(currentInsItemId)
-                //     }
-                //   }else{
-                //     this.saveInsContext(currentInsItemId)
-                //   }
-                // }
               })
               break;
             case 'tableList':
@@ -3373,6 +3394,17 @@
         // 淇濆瓨鏁版嵁
         this.saveInsContext(n.i)
       },
+      // 鏍峰搧妫�鏌�
+      changeSampleCheck(val, n,type){
+        this.$set(n.v,'v',val)
+        if(type=='鍓�'){
+          // 妫�楠屽墠
+          this.saveInsContext(n.i)
+        }else{
+          // 妫�楠屽悗
+          this.saveInsContext(n.i)
+        }
+      },
       getAuthorizedPerson() {
         this.$axios.get(this.$api.user.getUserMenu).then(res => {
           let data = []
@@ -3441,7 +3473,9 @@
               resValue: null,
               equipValue: [],
               equipName: [],
-              insResult: null
+              insResult: null,
+              beforeCheck:null,
+              afterCheck:null,
             }
           }
         })

--
Gitblit v1.9.3