From a6a81f01e4c17f8f4d60a17f02c793ab722cabed Mon Sep 17 00:00:00 2001
From: zwl <1051256694@qq.com>
Date: 星期五, 17 十月 2025 08:42:21 +0800
Subject: [PATCH] 1.修改agv组托入库 2.新增物料下架,呼叫agv取空托盘

---
 pages/pakin/pakin.vue |   28 ++++++++++++++++++++++++++--
 1 files changed, 26 insertions(+), 2 deletions(-)

diff --git a/pages/pakin/pakin.vue b/pages/pakin/pakin.vue
index 1e1d3d6..b76dab8 100644
--- a/pages/pakin/pakin.vue
+++ b/pages/pakin/pakin.vue
@@ -7,6 +7,11 @@
 					@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>
 				<input type="text" placeholder=" 鎵爜 / 杈撳叆" v-model="matnr" :focus="matFocus" @input="findMat()">
 				<view class="item-right">
@@ -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,
 			}
@@ -172,6 +179,7 @@
 			},
 			// barcode input 浜嬩欢
 			barcodeInput() {
+				this.barcode = this.barcode.replace(/^\{|\}$/g, '')
 				// 涓嶈缃畾鏃跺櫒 浼氬嚭鐜版壂鍏ョ殑瀛楃涓蹭笉鍏�
 				setTimeout(() => {
 					var len = this.barcode.length
@@ -187,6 +195,11 @@
 					this.focuss()
 				}, 200)
 			},
+			
+			// staNo input 浜嬩欢
+			staNoInput() {
+				this.staNofocuss()
+			},
 			// 鎵樼洏鐮佹湁璇噸缃�
 			barcodeFocuss() {
 				let that = this;
@@ -200,6 +213,17 @@
 			focuss() {
 				this.barcodeFocus = false;
 				this.matFocus = false;
+				this.staNoFocus = false;
+				setTimeout(() => {
+					this.matnr = '';
+					this.staNoFocus = true;
+				}, 100);
+			},
+			// 鍟嗗搧鍏夋爣娓呯┖閲嶇疆
+			staNofocuss() {
+				this.barcodeFocus = false;
+				this.matFocus = false;
+				this.staNoFocus = false;
 				setTimeout(() => {
 					this.matnr = '';
 					this.matFocus = true;
@@ -287,8 +311,6 @@
 							that.findMat(that.matnr)
 						},
 					},
-
-
 				});
 				that.matnr = ''
 			},
@@ -402,6 +424,7 @@
 				uni.request({
 					url: that.baseUrl + '/mobile/comb/auth',
 					data: JSON.stringify({
+						staNo: that.staNo,
 						barcode: that.barcode,
 						combMats: that.dataList
 					}),
@@ -453,6 +476,7 @@
 			resst() {
 				this.dataList = []
 				this.barcode = ''
+				this.staNo = ''
 				this.barcodeFocuss()
 			},
 		}

--
Gitblit v1.9.1