From 32bce1af0a317ddf35059781126e4b502c130a76 Mon Sep 17 00:00:00 2001 From: caill <815519168@qq.com> Date: Mon, 24 Jun 2024 16:18:27 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E7=BB=84=E7=9B=98=E6=9F=A5?= =?UTF-8?q?=E7=9C=8B=E3=80=81=E6=9D=A1=E7=A0=81=E8=A7=A3=E7=BB=91=E3=80=81?= =?UTF-8?q?=E5=8E=8B=E5=88=B6=E6=B7=B7=E7=A2=BE=E6=BB=A1=E6=96=99=E6=90=AC?= =?UTF-8?q?=E8=BF=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/manage/group-task.vue | 60 ++++++++++++++- pages/manage/vehicle-unbind.vue | 95 ++++++++++++++++++++++- pages/manage/yzhnml-carry.vue | 130 ++++++++++++++++++++++++++++++-- utils/getData2.js | 33 ++++++++ 4 files changed, 304 insertions(+), 14 deletions(-) diff --git a/pages/manage/group-task.vue b/pages/manage/group-task.vue index 239d03a..941c959 100644 --- a/pages/manage/group-task.vue +++ b/pages/manage/group-task.vue @@ -1,15 +1,69 @@ diff --git a/pages/manage/vehicle-unbind.vue b/pages/manage/vehicle-unbind.vue index 239d03a..c738ab3 100644 --- a/pages/manage/vehicle-unbind.vue +++ b/pages/manage/vehicle-unbind.vue @@ -1,15 +1,104 @@ diff --git a/pages/manage/yzhnml-carry.vue b/pages/manage/yzhnml-carry.vue index 239d03a..9d8a10b 100644 --- a/pages/manage/yzhnml-carry.vue +++ b/pages/manage/yzhnml-carry.vue @@ -1,19 +1,133 @@ - - + \ No newline at end of file diff --git a/utils/getData2.js b/utils/getData2.js index 2b87938..28eaf2d 100644 --- a/utils/getData2.js +++ b/utils/getData2.js @@ -162,4 +162,37 @@ export const handInst = (type, id) => request({ type: type, inst_uuid: id } +}) + +/** + * 压制混碾满料搬运 + */ +export const mlTask = (code, vcode, weight, qty) => request({ + url:'api/pda/mlTask', + data: { + deviceCode: code, + vehicle_code: vcode, + weight: weight, + qty: qty + } +}) + +/** + * 条码解绑 + */ +export const vehicleUnbind = (code) => request({ + url:'api/pda/vehicleUnbind', + data: { + point_code: code + } +}) + +/** + * 组盘查看 + */ +export const zpxxTask = (code) => request({ + url:'api/pda/zpxxTask', + data: { + vehicle_code: code + } }) \ No newline at end of file