From c768b659f9b22984bffe9ee9985e4738f6f05986 Mon Sep 17 00:00:00 2001 From: xiangxy Date: Fri, 30 May 2025 10:03:32 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AE=A1=E8=8A=AF=E5=A4=87=E8=B4=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/SecondPhase/slitting/TubeStock.vue | 153 +++++++++++++++++++++++ utils/getData4.js | 36 +++++- 2 files changed, 188 insertions(+), 1 deletion(-) create mode 100644 pages/SecondPhase/slitting/TubeStock.vue diff --git a/pages/SecondPhase/slitting/TubeStock.vue b/pages/SecondPhase/slitting/TubeStock.vue new file mode 100644 index 0000000..b90eed0 --- /dev/null +++ b/pages/SecondPhase/slitting/TubeStock.vue @@ -0,0 +1,153 @@ + + + \ No newline at end of file diff --git a/utils/getData4.js b/utils/getData4.js index 0265f7b..61c71e6 100644 --- a/utils/getData4.js +++ b/utils/getData4.js @@ -1 +1,35 @@ -// 新增接口 \ No newline at end of file +import request from './request.js' +/** + * add + */ +// 管芯备货-查询管芯库存 +export const showPapervehicleView = (area, code) => request({ + url:'api/pda/stockingivt/showPapervehicleView', + data: { + product_area: area, + material_code: code, + } +}) +// 管芯备货-备货 +export const moveStock = (vcode, mcode, mname, tnum, pcode, parea, pareaname) => request({ + url:'api/pda/stockingivt/moveStock', + data: { + vehicle_code: vcode, + material_code: mcode, + material_name: mname, + total_num: tnum, + point_code: pcode, + product_area: parea, + product_area_name: pareaname + } +}) +// 管芯备货-区域下拉框 +export const queryProductArea = () => request({ + url:'api/pda/stockingivt/queryProductArea', + data: {} +}) +// 管芯备货-管芯规格下拉框 +export const queryPaperMaterial = () => request({ + url:'api/pda/paper/queryPaperMaterial', + data: {} +})