From e703b41ee825c66016f5f0fb80b5564d901ae666 Mon Sep 17 00:00:00 2001
From: licp <lichunping@guanfang.com.cn>
Date: 星期一, 28 十月 2024 15:06:19 +0800
Subject: [PATCH] 优化出入库

---
 src/components/view/b1-inspect-order-plan.vue |   31 -------------------------------
 1 files changed, 0 insertions(+), 31 deletions(-)

diff --git a/src/components/view/b1-inspect-order-plan.vue b/src/components/view/b1-inspect-order-plan.vue
index 511bc20..d544a33 100644
--- a/src/components/view/b1-inspect-order-plan.vue
+++ b/src/components/view/b1-inspect-order-plan.vue
@@ -367,7 +367,6 @@
           </el-table-column>
         </el-table>
 			</el-dialog>
-      <input type="text" id="ScanCodeInfo" v-model="codeInfo" @keyup.enter="keyup" style="opacity: 0;height: 0px;margin: 0px;padding: 0px;position: absolute;top: 0;"  autocomplete="off"></input>
     <el-dialog title="鎵爜妫�楠�" :visible.sync="qrCodeVisible" width="350px">
       <el-row>
         <el-col class="search_thing" :span="24">
@@ -677,36 +676,6 @@
         this.initializeSortable();
       }
 		},
-    watch:{
-      qrCodeVisible(newVal){
-        if(newVal){
-          // this.$message.success('鎵爜锛氭墦寮�')
-          let input = document.getElementById('ScanCodeInfo');
-          input.focus();
-          this.startTime = setInterval(()=>{
-            input.focus()
-          },1000)
-        }else{
-          // this.$message.warning('鎵爜锛氬叧闂�')
-          clearInterval(this.startTime)
-          this.sampleCode = ''
-        }
-      },
-      exportVisible(newVal){
-        if(newVal){
-          // this.$message.success('鎵爜锛氭墦寮�')
-          let input = document.getElementById('ScanCodeInfo');
-          input.focus();
-          this.startTime = setInterval(()=>{
-            input.focus()
-          },1000)
-        }else{
-          // this.$message.warning('鎵爜锛氬叧闂�')
-          clearInterval(this.startTime)
-          this.sampleCode = ''
-        }
-      },
-    },
 		methods: {
       selectList () {
         this.$axios.get(this.$api.warehouse.selectWarehouse).then(res => {

--
Gitblit v1.9.3