From 65c34e1efebee88a5e6630f33291e60e23a287c7 Mon Sep 17 00:00:00 2001 From: zwl <1051256694@qq.com> Date: 星期五, 12 九月 2025 10:56:23 +0800 Subject: [PATCH] 1.新增agv组托和组托并呼叫空托盘 2.出库确认 3.空板回库或者拣料回库 4.agv点到点搬运 5.agv点到区搬运 6.agv区到点搬运 --- pages/AGV/AGVStart.vue | 31 +++---------------------------- 1 files changed, 3 insertions(+), 28 deletions(-) diff --git a/pages/AGV/AGVStart.vue b/pages/AGV/AGVStart.vue index d9202b1..a6a57ae 100644 --- a/pages/AGV/AGVStart.vue +++ b/pages/AGV/AGVStart.vue @@ -3,12 +3,11 @@ <view class="code"> <view class="item"> <view class="code-decs">婧愮珯鐐�:</view> - <input type="text" placeholder=" 鎵爜 / 杈撳叆" v-model="stationCode" :focus="stationCodeFocus" - @input="stationCodeInput()" > + <input type="text" placeholder=" 鎵爜 / 杈撳叆" v-model="stationCode" :focus="stationCodeFocus"> </view> <view class="item"> <view class="code-decs">鐩爣绔�:</view> - <uni-combox :candidates="staList" placeholder="璇烽�夋嫨绔欑偣" v-model="sta"></uni-combox> + <input type="text" placeholder=" 鎵爜 / 杈撳叆" v-model="sta" :focus="stationCodeFocus"> </view> </view> @@ -138,30 +137,6 @@ this.token = uni.getStorageSync('token'); }, methods: { - stationCodeInput() { - let that = this; - that.staList = [] - uni.request({ - url: that.baseUrl + '/mobile/AGVSite?locNo='+that.stationCode, - - header: { - 'token': uni.getStorageSync('token') - }, - success(res) { - res = res.data - if (res.code === 200) { - let list = [] - Object.entries(res.data).forEach((value, key) => { - list.push(value[1]) - }); - that.staList = list - }else{ - that.messageText = res.msg - that.messageToggle('error') - } - } - }); - }, pushDevNo() { var devNo = {"devNo":this.stationCode} if (this.dataList.length == 0) { @@ -442,7 +417,7 @@ let newSta = that.sta.split("-") uni.request({ - url: that.baseUrl + '/mobile/AGVMove?sourceStaNo='+that.stationCode+'&staNo='+newSta[0], + url: that.baseUrl + '/mobile/SITESITEAGVMove?sourceStaNo='+that.stationCode+'&staNo='+newSta[0], header: { 'token': uni.getStorageSync('token') }, -- Gitblit v1.9.1