From 3d9cb98e7e0dc46434c95b17c2d06e5a1b921eed Mon Sep 17 00:00:00 2001 From: lijuncheng Date: Tue, 24 Dec 2024 10:58:03 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E7=A9=BA=E5=BA=93=E4=BD=8D?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/request2.js | 13 +++ src/pages.json | 24 ++++- src/pages/query/nullLocation.vue | 169 +++++++++++++++++++++++++++++++ 3 files changed, 205 insertions(+), 1 deletion(-) create mode 100644 src/pages/query/nullLocation.vue diff --git a/src/api/request2.js b/src/api/request2.js index 90bdb367..358d630d 100644 --- a/src/api/request2.js +++ b/src/api/request2.js @@ -4859,6 +4859,19 @@ export function getCallmaterials(params) { }); } +/** + * 查询空库位 + * @param {*} params + */ + +export function getRecommendLocationEmpty(params) { + return request({ + url: baseApi + "/wms/location/recommendLocationEmpty", + method: "post", + data:params, + }); +} + diff --git a/src/pages.json b/src/pages.json index ac7b1728..784e361d 100644 --- a/src/pages.json +++ b/src/pages.json @@ -133,7 +133,29 @@ } } }, - + { + "path": "pages/query/nullLocation", + "style": { + "navigationBarTitleText": "空库位查询", + "enablePullDownRefresh": true, + "titleNView": { + // "autoBackButton": "true", + "buttons": [ + // 右边按钮 + { + + "float": "right", + "fontSize": "58rpx", //按钮上文字的大小 + "text": "\ue696", + "fontSrc": "/static/ali_icon/iconfont.ttf" + + } + + ] + } + } + }, + { "path": "pages/setter/index", diff --git a/src/pages/query/nullLocation.vue b/src/pages/query/nullLocation.vue new file mode 100644 index 00000000..3e66d35f --- /dev/null +++ b/src/pages/query/nullLocation.vue @@ -0,0 +1,169 @@ + + + + + \ No newline at end of file