From d78a337df4af502f6e886dd4cb1533f2ec02843c Mon Sep 17 00:00:00 2001 From: whycq <10027870+whycq@user.noreply.gitee.com> Date: 星期三, 04 十月 2023 22:59:44 +0800 Subject: [PATCH] # --- pages/tzsk/AGV/AGVPakinOn.vue | 86 +++++++++++++++++++++++++++++++++++++++--- 1 files changed, 79 insertions(+), 7 deletions(-) diff --git a/pages/tzsk/AGV/AGVPakinOn.vue b/pages/tzsk/AGV/AGVPakinOn.vue index fe1dc72..181ab96 100644 --- a/pages/tzsk/AGV/AGVPakinOn.vue +++ b/pages/tzsk/AGV/AGVPakinOn.vue @@ -4,10 +4,10 @@ <view class="item"> <view class="code-decs">璁㈠崟鍙�:</view> <input type="text" placeholder=" 鎵爜 / 杈撳叆" v-model="orderNo" :focus="orderNoFocus" - @input="orderNoInput()"> + @input="findOrder()"> </view> <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> @@ -35,6 +35,27 @@ <view class="list-left-item"> <view class="desc">No锛�</view> <view class="left-item">{{i + 1}}</view> + </view> + <!-- <view class="list-left-item"> + <view class="desc">绠辩爜锛�</view> + <view class="left-item"> + <input type="text" v-model="item.containerCode"> + <uni-tag :text="item.containerCode" type="primary"></uni-tag> + </view> + </view> --> + <view class="list-left-item"> + <view class="desc">閿�鍞崟鍙凤細</view> + <view class="left-item"> + <input type="text" v-model="item.csocode"> + <!-- <uni-tag :text="item.containerCode" type="primary"></uni-tag> --> + </view> + </view> + <view class="list-left-item"> + <view class="desc">璁㈠崟琛屽彿锛�</view> + <view class="left-item"> + <input type="text" v-model="item.isoseq"> + <!-- <uni-tag :text="item.containerCode" type="primary"></uni-tag> --> + </view> </view> <view class="list-left-item"> <view class="desc">缂栫爜锛�</view> @@ -169,7 +190,8 @@ matData: '', removeNum: 0, devNo: [], - flag: 0 + flag: 0, + tempOrderInfo: {csocode: '',isoseq: ''} } }, onLoad() { @@ -180,6 +202,53 @@ this.token = uni.getStorageSync('token'); }, methods: { + findOrder() { + let that = this + that.tempOrderInfo.csocode = '' + that.tempOrderInfo.isoseq = '' + uni.request({ + url: that.baseUrl + '/mobile/order/search/orderNo/auth', + header: {'token': uni.getStorageSync('token')}, + data: { + orderNo: that.orderNo + }, + success(res) { + res = res.data + if (res.code === 200) { + if(res.data && res.data[0].combMats) { + for (let i = 0; i < res.data[0].combMats.length; i++) { + that.checkMat(res.data[0].combMats[i]) + } + // that.tempOrderInfo.csocode = res.data[0].combMats.csocode ? res.data[0].combMats.csocode : '' + // that.tempOrderInfo.isoseq = res.data[0].combMats.isoseq ? res.data[0].combMats.isoseq : '' + } else { + uni.showToast({ + title: that.orderNo + '璇锋鏌ヨ鍗曞彿鏄惁姝g‘', + icon: "none", + position: 'top' + }) + } + } else if (res.code == 403) { + uni.showToast({ + title: res.msg, + icon: "none", + position: 'top' + }) + setTimeout(() => { + uni.reLaunch({ + url: '../login/login' + }); + }, 1000); + } else { + uni.showToast({ + title: res.msg, + icon: "none", + position: 'top' + }) + } + } + }) + }, messageToggle(type) { this.msgType1 = type this.$refs.message.open() @@ -210,13 +279,14 @@ }, barcodeInput() { // 涓嶈缃畾鏃跺櫒 浼氬嚭鐜版壂鍏ョ殑瀛楃涓蹭笉鍏� + this.barcode = this.barcode.split('_')[1] setTimeout(() => { var len = this.barcode.length if (len != 10) { this.barcode = '' this.barcodeFocus = true uni.showToast({ - title: '鎵樼洏鐮佹湁璇閲嶈瘯', + title: '鏂欑鐮佹湁璇閲嶈瘯', icon: "none", position: 'top' }); @@ -225,7 +295,7 @@ this.stationCodeFocuss() }, 200) }, - // 鎵樼洏鐮佹湁璇噸缃� + // 鏂欑鐮佹湁璇噸缃� barcodeFocuss() { let that = this; that.barcodeFocus = false; @@ -274,7 +344,7 @@ that.matnr = '' that.matData['batch'] = '' uni.navigateTo({ - url: "../mat/matSelected", + url: "../../mat/matSelected", // 閫氳繃eventChannel鍚戣鎵撳紑椤甸潰浼犻�佹暟鎹� success: function(res) { res.eventChannel.emit('mat', { @@ -315,7 +385,7 @@ selectMat() { let that = this uni.navigateTo({ - url: "../mat/matQuery", + url: "../../mat/matQuery", success: function(res) { // 閫氳繃eventChannel鍚戣鎵撳紑椤甸潰浼犻�佹暟鎹� 鍚戝彟澶栦竴涓〉闈紶閫掑�肩殑 res.eventChannel.emit('commonUrl', { @@ -443,6 +513,8 @@ return; } } + // console.log(that.dataList); + // return uni.request({ url: that.baseUrl + '/agvMobile/comb/auth', data: JSON.stringify({ -- Gitblit v1.9.1