From 847cd05d541e1b0bb96beb9e79b8e6b42484598c Mon Sep 17 00:00:00 2001 From: xiangxy Date: Wed, 11 Mar 2026 15:52:22 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A3=85=E8=B4=A7=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages.json | 7 ++ pages/hdyy/wrcdj/wrc-load.vue | 153 ++++++++++----------------- pages/hdyy/wrcdj/wrczh-matersave.vue | 117 ++++++++++++++++++++ utils/getData3.js | 4 +- 4 files changed, 184 insertions(+), 97 deletions(-) create mode 100644 pages/hdyy/wrcdj/wrczh-matersave.vue diff --git a/pages.json b/pages.json index ceadc1e..e928163 100644 --- a/pages.json +++ b/pages.json @@ -524,6 +524,13 @@ "navigationStyle": "custom" } } + ,{ + "path" : "pages/hdyy/wrcdj/wrczh-matersave", + "style" : + { + "navigationStyle": "custom" + } + } ,{ "path" : "pages/hdyy/wrcdj/wrc-unload", "style" : diff --git a/pages/hdyy/wrcdj/wrc-load.vue b/pages/hdyy/wrcdj/wrc-load.vue index 52e09ec..974f79d 100644 --- a/pages/hdyy/wrcdj/wrc-load.vue +++ b/pages/hdyy/wrcdj/wrc-load.vue @@ -3,45 +3,33 @@ - - - - 装货区 - - - - - - - + + - - - + + - -
序号 点位编码 点位名称点位状态 物料编码 物料名称 批号 数量计量单位AGV任务
{{i+1}} {{e.point_code}} {{e.point_name}}{{['', '空位', '有箱有料'][Number(e.point_status)]}} {{e.material_code}} {{e.material_name}} {{e.pcsn}} {{e.qty}}{{e.unit_name}}{{e.task_code}}
@@ -49,10 +37,10 @@
- - - - + + + +
@@ -60,7 +48,7 @@ \ No newline at end of file diff --git a/utils/getData3.js b/utils/getData3.js index 4bdd1f3..9fc992a 100644 --- a/utils/getData3.js +++ b/utils/getData3.js @@ -468,12 +468,12 @@ export const queryZhPoint = (pcode) => request({ }) // 呼叫无人车 -export const callCar = (rows) => request({ +export const callCar = () => request({ url:'api/notCar/callCar', data: {} }) // 装货 -export const install = () => request({ +export const install = (rows) => request({ url:'api/notCar/install', data: {rows: rows} })