From 173166a3d1c9f5171b20fca9c5336005d6c9d0bc Mon Sep 17 00:00:00 2001
From: 王震 <10952869+daywangzhen@user.noreply.gitee.com>
Date: 星期三, 08 十一月 2023 19:38:12 +0800
Subject: [PATCH] Merge branch 'master' of http://114.132.189.42:9002/r/mes-ocea-before

---
 src/views/quality/processInspect/processInspect-form.vue |   48 +++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 47 insertions(+), 1 deletions(-)

diff --git a/src/views/quality/processInspect/processInspect-form.vue b/src/views/quality/processInspect/processInspect-form.vue
index cabb8ab..1a487ec 100644
--- a/src/views/quality/processInspect/processInspect-form.vue
+++ b/src/views/quality/processInspect/processInspect-form.vue
@@ -143,6 +143,36 @@
                                     </div>
                                 </template>
                             </el-table-column>
+                            <el-table-column prop="inspectionValue" v-for="(item, index) in empiricalValueAdd" :key="index"
+                                label="妫�楠屾弿杩�" width="240" style="text-align: center;">
+                                <template slot-scope="scope">
+                                    <el-col v-if="scope.row.itype === '1'">
+                                        <el-tooltip v-if="scope.row.iname != null" :disabled="scope.row.eId != null"
+                                            class="item" effect="dark" content="璇峰厛閫夋嫨璁惧锛�" placement="top-start">
+                                            <el-input :disabled="scope.row.eId == null"
+                                                v-model="scope.row.inote"
+                                                @blur="changeState(scope.row, index)" placeholder="璇疯緭鍏ユ楠屾弿杩�"></el-input>
+                                            <span v-if="resultVal != null && processInspectVo.id != null"
+                                                v-text="scope.row.inote"></span>
+                                        </el-tooltip>
+                                    </el-col>
+                                    <el-col v-else>
+                                        <el-tooltip v-if="scope.row.iname != null" :disabled="scope.row.eId != null"
+                                            class="item" effect="dark" content="璇峰厛閫夋嫨璁惧锛�" placement="top-start">
+                                            <!-- <el-input :disabled="scope.row.eId == null"
+                                                v-model="scope.row.empiricalValueAddss[index]"
+                                                @blur="changeState(scope.row, index)" placeholder="璇疯緭鍏ユ娴嬪��"></el-input> -->
+                                            <el-select style="width: 100%;" @change="changeState(scope.row, index)" :disabled="scope.row.eId == null" v-model="scope.row.inote" placeholder="璇烽�夋嫨">
+                                                <el-option v-for="item in dataVal" :key="item.value" :label="item.label"
+                                                    :value="item.value">
+                                                </el-option>
+                                            </el-select>
+                                            <span v-if="resultVal != null && processInspectVo.id != null"
+                                                v-text="scope.row.inote"></span>
+                                        </el-tooltip>
+                                    </el-col>
+                                </template>
+                            </el-table-column>
                             <el-table-column label="缁撹" fixed="right" min-width="100">
                                 <template slot-scope="scope">
                                     <div v-if="scope.row.iname != null">
@@ -342,6 +372,9 @@
                                     arr = obj.inspectionValue.split(",")
                                 }
                                 obj.empiricalValueAddss = arr
+                                if(obj.note){
+                                        snote=obj.inote
+                                    }
                                 if (arr.length > this.empiricalValueAdd) {
                                     this.empiricalValueAdd = arr.length
                                 }
@@ -374,6 +407,7 @@
                         obj.children[index - 1].inspectionValue = null
                         obj.children[index - 1].iresult = null
                         obj.children[index - 1].empiricalValueAddss = []
+                        obj.children[index-1].inote=''
                     }
                 })
             }).catch(error => {
@@ -392,20 +426,31 @@
             this.technologyList = sample.children
         },
         changeState(row, index) {
+            console.log(row)
             if (row.iid != null && row.iid != '') {
                 let str = ""
                 row.empiricalValueAddss.forEach(e => {
                     str += e + ","
                 })
+             
+                // if (note === undefined || note === '' || note === null) {
+                //     return
+                // }
+                console.log(str)
                 str = str.slice(0, -1);
                 if (str === undefined || str === '' || str === null) {
                     return
                 }
+
+                
                 let obj = {
                     devideId: row.eId,
                     ppid: row.iid,
-                    inspectionValue: str
+                    inspectionValue: str,
+                    note : row.inote
+
                 }
+                console.log(obj)
                 updateProcessInsProduct(obj).then(res => {
                     if (res.data.code == 0) {
                         this.$message.success("鏇存柊鎴愬姛")
@@ -505,6 +550,7 @@
     flex-wrap: wrap;
 }
 
+
 .finishedProduct-basic {
     background-color: #fff;
     height: 155px;

--
Gitblit v1.9.3