From 34a0a0c73f02d0012da7a506b4bbca2dcd9ef591 Mon Sep 17 00:00:00 2001 From: xiangxy Date: Mon, 30 Mar 2026 14:35:19 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=96=E6=94=BE=E8=B4=A7=E7=A1=AE=E8=AE=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages.json | 7 ++ pages/hdyy/scgl/by-xialiao.vue | 4 +- pages/hdyy/tygn/agv-manage.vue | 3 +- pages/hdyy/tygn/qfh-confirm.vue | 164 ++++++++++++++++++++++++++++++++ utils/getData3.js | 24 +++++ utils/mork02.js | 3 +- 6 files changed, 201 insertions(+), 4 deletions(-) create mode 100644 pages/hdyy/tygn/qfh-confirm.vue diff --git a/pages.json b/pages.json index 2ba7a2c..db83596 100644 --- a/pages.json +++ b/pages.json @@ -517,6 +517,13 @@ "navigationStyle": "custom" } } + ,{ + "path" : "pages/hdyy/tygn/qfh-confirm", + "style" : + { + "navigationStyle": "custom" + } + } ,{ "path" : "pages/hdyy/wrcdj/wrc-load", "style" : diff --git a/pages/hdyy/scgl/by-xialiao.vue b/pages/hdyy/scgl/by-xialiao.vue index b3e9683..89a361e 100644 --- a/pages/hdyy/scgl/by-xialiao.vue +++ b/pages/hdyy/scgl/by-xialiao.vue @@ -73,8 +73,8 @@ - - + + diff --git a/pages/hdyy/tygn/agv-manage.vue b/pages/hdyy/tygn/agv-manage.vue index b7b93fa..b3fc138 100644 --- a/pages/hdyy/tygn/agv-manage.vue +++ b/pages/hdyy/tygn/agv-manage.vue @@ -65,7 +65,8 @@ return { title: '', val1: '', - dataList: [] + dataList: [], + disabled: false }; }, onLoad (options) { diff --git a/pages/hdyy/tygn/qfh-confirm.vue b/pages/hdyy/tygn/qfh-confirm.vue new file mode 100644 index 0000000..0f3069f --- /dev/null +++ b/pages/hdyy/tygn/qfh-confirm.vue @@ -0,0 +1,164 @@ + + + + + \ No newline at end of file diff --git a/utils/getData3.js b/utils/getData3.js index 9ee8c1d..73af7fe 100644 --- a/utils/getData3.js +++ b/utils/getData3.js @@ -450,6 +450,30 @@ export const queryIvt = (scode, pcode, mcode, pcsn) => request({ data: {sect_code: scode, point_code: pcode, material_code: mcode, pcsn: pcsn} }) +// 取放货确认(通用功能)共 (4) 个 +// 扫码查询点位信息 +export const queryPointInfo = (pcode) => request({ + url:'api/pdaPointAndPoint/queryPointInfo', + data: {point_code: pcode} +}) +// 放货完成 +export const putConfirm = (rows) => request({ + url:'api/pdaPointAndPoint/putConfirm', + data: {rows: rows} +}) +// 取货完成 +export const getConfirm = (rows) => request({ + url:'api/pdaPointAndPoint/getConfirm', + data: {rows: rows} +}) +// 复位 +export const reduce = (rows) => request({ + url:'api/pdaPointAndPoint/reduce', + data: {rows: rows} +}) + + + /** * 无人车 */ diff --git a/utils/mork02.js b/utils/mork02.js index e03ff5f..ee13cdf 100644 --- a/utils/mork02.js +++ b/utils/mork02.js @@ -61,7 +61,8 @@ export const allAuthority = () => { {menu_id: '2', title: '作业管理', path: '/pages/hdyy/tygn/work-manage'}, {menu_id: '3', title: '点位更新', path: '/pages/hdyy/tygn/pt-update'}, {menu_id: '4', title: 'AGV管理', path: '/pages/hdyy/tygn/agv-manage'}, - {menu_id: '5', title: '库存查询', path: '/pages/hdyy/tygn/kc-query'} + {menu_id: '5', title: '库存查询', path: '/pages/hdyy/tygn/kc-query'}, + {menu_id: '6', title: '取放货确认', path: '/pages/hdyy/tygn/qfh-confirm'} ]} ] }