From 0f92baf6117779fe9dd4325877521e37b04b31c8 Mon Sep 17 00:00:00 2001 From: zwl <1051256694@qq.com> Date: 星期五, 12 九月 2025 10:49:07 +0800 Subject: [PATCH] 1.新增agv组托和组托并呼叫空托盘 2.出库确认 3.空板回库或者拣料回库 4.agv点到点搬运 5.agv点到区搬运 6.agv区到点搬运 --- pages/pakin/bomPakin.vue | 9 ++++++--- 1 files changed, 6 insertions(+), 3 deletions(-) diff --git a/pages/pakin/bomPakin.vue b/pages/pakin/bomPakin.vue index 426c5fb..38aa3b7 100644 --- a/pages/pakin/bomPakin.vue +++ b/pages/pakin/bomPakin.vue @@ -238,7 +238,7 @@ method: 'POST', header: { 'token': uni.getStorageSync('token') }, success(res) { - console.log(res); + // console.log(res); res = res.data if (res.code === 200) { if (res.data) { @@ -287,8 +287,10 @@ that.matData = result.data that.matnr = '' that.matData['batch'] = '' - if (that.maxAnfme) { + if (that.maxAnfme > 0) { that.matData['maxNum'] = that.maxAnfme + } else if (that.maxAnfme == 0){ + that.matData['maxNum'] = 0 } uni.navigateTo({ url: "../mat/matSelected", @@ -470,8 +472,9 @@ } } uni.request({ - url: that.baseUrl + '/mobile/comb/auth', + url: that.baseUrl + '/mobile/comb/auth2', data: JSON.stringify({ + bomCode: that.bomCode, barcode: that.barcode, combMats: that.dataList }), -- Gitblit v1.9.1