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

---
 src/views/quality/finishedProductInspection/finishedProduct-form.vue |   54 +++++++++++++++++++++++++++++++++++++++++++++++++++++-
 1 files changed, 53 insertions(+), 1 deletions(-)

diff --git a/src/views/quality/finishedProductInspection/finishedProduct-form.vue b/src/views/quality/finishedProductInspection/finishedProduct-form.vue
index fd45c92..a0a9cbd 100644
--- a/src/views/quality/finishedProductInspection/finishedProduct-form.vue
+++ b/src/views/quality/finishedProductInspection/finishedProduct-form.vue
@@ -148,11 +148,17 @@
                             <template slot-scope="scope">
                                 <span v-if="resultVal!=null && processInspectVo.id!=null" v-text="scope.row.ename"></span>
                                 <div v-else>
-                                    <el-select style="width:100%" v-model="scope.row.eId"
+                                    <el-select style="width:80%" v-model="scope.row.eId"
                                     v-if="scope.row.iname != null" filterable @change="updateDevice(scope.row)">
                                         <el-option v-for="(item,index) in deviceList"
                                         :key="index" :value="item.id" :label="item.code +'-'+ item.name"></el-option>
                                     </el-select>
+                                    <el-button
+                                    size="small"
+                                    slot="append"
+                                    icon="el-icon-full-screen"
+                                    v-if="scope.row.iname != null"
+                                    @click="codeDevice(scope.row,scope.$index)"></el-button>
                                 </div>
                             </template>
                         </el-table-column>
@@ -224,6 +230,18 @@
             </el-row>
         </div>
     </div>
+    <el-dialog
+  title="璁惧鎵弿"
+  :visible.sync="deviceCode"
+  width="60%">
+  <div style="height: 100vh;width: 100%;">
+    <qr-code-app ref="codeDeviceCompont" @ok="getDeviceResultInfo" @cancelCodeDialog="cancelDeviceCodeDialog"></qr-code-app>
+  </div>
+  <span slot="footer" class="dialog-footer">
+    <el-button @click="deviceCode = false">鍙� 娑�</el-button>
+    <el-button type="primary" @click="deviceCode = false">纭� 瀹�</el-button>
+  </span>
+</el-dialog>
 </div>
 </template>
 
@@ -240,9 +258,16 @@
  } from '@/api/quality/finishedProduct'
  import { getIfsLocationByGroupCopyAll } from '@/api/warehouse/location'
  import { remote } from '@/api/admin/dict'
+ import qrCodeApp from '@/views/common/qrCodeApp'
 export default {
+    components:{
+        qrCodeApp
+    },
     data() {
         return {
+            row: null,
+            proIndex: 0,
+            deviceCode: false,
             locationList: [],
             dataVal: [{
                 label: '鏄�',
@@ -304,6 +329,33 @@
         this.init()
     },
     methods: {
+        cancelDeviceCodeDialog(){
+        this.deviceCode = false
+      },
+      getDeviceResultInfo(val){
+        console.log("鎵弿鍚庢暟鎹�",val);
+        let id=val.split("id@")[1]
+        if(id!=undefined&&id!=''&&id!=null){
+            let filterData=this.deviceList.filter(item=>{
+          return item.id==id
+        })[0]
+        console.log(filterData);
+        this.row.eId=Number(id)
+        this.updateDevice(this.row)
+        }else{
+        this.$message({
+          message: '鏈瘑鍒嚭浜屼綅鐮佽閲忓櫒鍏蜂俊鎭紒',
+          type: 'warning'
+        });
+        }
+      },
+      codeDevice(row,index){
+        this.row=row 
+        console.log("row",row);
+        this.deviceCode =true
+        this.$refs.codeDeviceCompont.openCamera()
+        this.proIndex=index
+      },
         changeLocation(val){
             if(val){
                 let obj = {

--
Gitblit v1.9.3