From 3a9bce9c607491d526bd1e10996204a41b9ca41b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=94=A1=E7=8E=B2?= <8702040+cai-ling@user.noreply.gitee.com> Date: Tue, 10 Dec 2024 16:16:38 +0800 Subject: [PATCH] =?UTF-8?q?add=E5=A5=97=E8=BD=B4=E7=94=B3=E8=AF=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages.json | 8 ++ pages/ProductManage/AxisApply.vue | 198 ++++++++++++++++++++++++++++++ utils/getData2.js | 14 ++- utils/mork2.js | 7 ++ 4 files changed, 226 insertions(+), 1 deletion(-) create mode 100644 pages/ProductManage/AxisApply.vue diff --git a/pages.json b/pages.json index 19e14c5..48994f2 100644 --- a/pages.json +++ b/pages.json @@ -535,6 +535,14 @@ } } + ,{ + "path" : "pages/ProductManage/AxisApply", + "style" : + { + "navigationStyle": "custom" + } + + } ], "globalStyle": { // "pageOrientation": "landscape", diff --git a/pages/ProductManage/AxisApply.vue b/pages/ProductManage/AxisApply.vue new file mode 100644 index 0000000..5ae25fd --- /dev/null +++ b/pages/ProductManage/AxisApply.vue @@ -0,0 +1,198 @@ + + + \ No newline at end of file diff --git a/utils/getData2.js b/utils/getData2.js index 54470e1..d242b4b 100644 --- a/utils/getData2.js +++ b/utils/getData2.js @@ -510,4 +510,16 @@ data: { export const rgvStatusQuery = () => request({ url:'api/pda/task/rgvStatusQuery', data: {} -}) \ No newline at end of file +}) + +/** + * 套轴申请 + */ +export const queryMaterialInfoL1400 = (area, code) => request({ + url:'api/pda/shipping/queryMaterialInfoL1400', + data: {product_area: area, device_code: code} +}) +export const shaftRecedesL1400 = (area, size, qg, sp) => request({ + url:'api/pda/shipping/shaftRecedesL1400', + data: {product_area: area, qzz_size: size, qzz_generation: qg, start_point: sp} +}) diff --git a/utils/mork2.js b/utils/mork2.js index 613fb76..54812d7 100644 --- a/utils/mork2.js +++ b/utils/mork2.js @@ -20,6 +20,7 @@ export const allAuthority = () => { {menu_id: '3', title: '空轴配送', path: '/pages/ProductManage/ZjDelivery'}, {menu_id: '4', title: '空轴进站', path: '/pages/ProductManage/ZjInStore'}, {menu_id: '5', title: '子卷出站', path: '/pages/ProductManage/ZjOutStore'}, + {menu_id: '6', title: '套轴申请', path: '/pages/ProductManage/AxisApply'} ]}, {menu_id: '4', path: 'RF04', title: '点位管理', sonTree: [ {menu_id: '1', title: '点位管理', path: '/pages/ProductManage/PointManage'}, @@ -229,4 +230,10 @@ export const queryBoxSpec = () => { "msg": "查询成功" } return res +} +export const queryDeviceByarea = () => { + let res = { + data: [{value: '01', text: 'a'}, {value: '02', text: 'bc'}] + } + return res } \ No newline at end of file