From 7dfb9ee5dac9d661773947d3665232f0bf37617a Mon Sep 17 00:00:00 2001 From: zwl <1051256694@qq.com> Date: 星期一, 22 九月 2025 09:17:36 +0800 Subject: [PATCH] 新增解绑 --- pages/home/home.vue | 6 ++++++ pages.json | 6 ++++++ pages/pakin/pakin.vue | 29 +++++++++++++++++++++++++++-- 3 files changed, 39 insertions(+), 2 deletions(-) diff --git a/pages.json b/pages.json index 80eea4d..4ed8af5 100644 --- a/pages.json +++ b/pages.json @@ -37,6 +37,12 @@ } }, { + "path": "pages/pakin/outConfilm1", + "style": { + "navigationBarTitleText": "鍑哄簱瑙g粦" + } + }, + { "path": "pages/AGV/AGVPakin", "style": { "navigationBarTitleText": "AGV缁勬墭" diff --git a/pages/home/home.vue b/pages/home/home.vue index cf7459f..002a28f 100644 --- a/pages/home/home.vue +++ b/pages/home/home.vue @@ -51,6 +51,12 @@ color: 'green', cuIcon: 'order', url: '/AGV/AGVStart' + },{ + title: '鍑哄簱瑙g粦', + name: 'outConfilm1', + color: 'cyan', + cuIcon: 'pullup', + url: '/pakin/outConfilm1' }, // { // title: 'AGV鍛煎彨绌烘墭鐩�', diff --git a/pages/pakin/pakin.vue b/pages/pakin/pakin.vue index 2eb054b..3c5544a 100644 --- a/pages/pakin/pakin.vue +++ b/pages/pakin/pakin.vue @@ -2,9 +2,14 @@ <view> <view class="code"> <view class="item"> - <view class="code-decs">绔欑偣鐮�:</view> + <view class="code-decs">鎵樼洏鐮�:</view> <input type="text" placeholder=" 鎵爜 / 杈撳叆" v-model="barcode" :focus="barcodeFocus" @input="barcodeInput()"> + </view> + <view class="item"> + <view class="code-decs">绔欑偣鐮�:</view> + <input type="text" placeholder=" 鎵爜 / 杈撳叆" v-model="staNo" :focus="staNoFocus" + @input="staNoInput()"> </view> <view class="item"> <view class="code-decs">鐗╂枡鐮�:</view> @@ -141,6 +146,7 @@ baseUrl: '', token: '', barcode: '', + staNo: '', dataList: [], count: 0, rowNum: '', @@ -154,6 +160,7 @@ content: '', barcodeFocus: true, matFocus: false, + staNoFocus: false, matData: '', removeNum: 0, } @@ -176,7 +183,7 @@ // 涓嶈缃畾鏃跺櫒 浼氬嚭鐜版壂鍏ョ殑瀛楃涓蹭笉鍏� setTimeout(() => { var len = this.barcode.length - if (len != 3) { + if (len != 8) { uni.showToast({ title: '鎵樼洏鐮佹湁璇閲嶈瘯', icon: "none", @@ -187,6 +194,11 @@ } this.focuss() }, 200) + }, + + // staNo input 浜嬩欢 + staNoInput() { + this.staNofocuss() }, // 鎵樼洏鐮佹湁璇噸缃� barcodeFocuss() { @@ -201,6 +213,18 @@ focuss() { this.barcodeFocus = false; this.matFocus = false; + this.staNoFocus = false; + setTimeout(() => { + this.matnr = ''; + this.staNo = ''; + this.staNoFocus = true; + }, 100); + }, + // 鍟嗗搧鍏夋爣娓呯┖閲嶇疆 + staNofocuss() { + this.barcodeFocus = false; + this.matFocus = false; + this.staNoFocus = false; setTimeout(() => { this.matnr = ''; this.matFocus = true; @@ -403,6 +427,7 @@ uni.request({ url: that.baseUrl + '/mobile/comb/auth', data: JSON.stringify({ + staNo: that.staNo, barcode: that.barcode, combMats: that.dataList }), -- Gitblit v1.9.1