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: {} +})