diff --git a/pages.json b/pages.json index 42f22d8..e8745b8 100644 --- a/pages.json +++ b/pages.json @@ -450,6 +450,34 @@ } } + ,{ + "path" : "pages/zw/kzj-instore", + "style" : + { + "navigationStyle": "custom" + } + } + ,{ + "path" : "pages/zw/kzj-outstore", + "style" : + { + "navigationStyle": "custom" + } + } + ,{ + "path" : "pages/zw/manual-callmater", + "style" : + { + "navigationStyle": "custom" + } + } + ,{ + "path" : "pages/zw/manual-returnmater", + "style" : + { + "navigationStyle": "custom" + } + } ], "globalStyle": { // "pageOrientation": "landscape", diff --git a/pages/home/home.vue b/pages/home/home.vue index 77f446f..ad25b17 100644 --- a/pages/home/home.vue +++ b/pages/home/home.vue @@ -41,7 +41,7 @@ return { userName: '', menuList: [ - {title: '解包管理', path: 'RF03', sonTree: [{title: '解包上料', path: '/pages/zw/jb-up-mater'}, {title: '解包下料', path: '/pages/zw/jb-lower-mater'}, {title: '料桶出入', path: '/pages/zw/materbox-instore'}, {title: '解包退料', path: '/pages/zw/jb-return-mater'}, {title: '人车安全', path: '/pages/zw/mancar-safe'}, {title: '来料入库', path: '/pages/zw/ll-instore'}]}, + {title: '解包管理', path: 'RF03', sonTree: [{title: '解包上料', path: '/pages/zw/jb-up-mater'}, {title: '解包下料', path: '/pages/zw/jb-lower-mater'}, {title: '料桶出入', path: '/pages/zw/materbox-instore'}, {title: '解包退料', path: '/pages/zw/jb-return-mater'}, {title: '人车安全', path: '/pages/zw/mancar-safe'}, {title: '来料入库', path: '/pages/zw/ll-instore'}, {title: '空载具入库', path: '/pages/zw/kzj-instore'}, {title: '空载具出库', path: '/pages/zw/kzj-outstore'}, {title: '人工叫料', path: '/pages/zw/manual-callmater'}, {title: '人工退料', path: '/pages/zw/manual-returnmater'}]}, // {title: '预装管理', path: 'RF04', sonTree: [{title: '物料组盘', path: '/pages/entry/mater-group'}, {title: '货架绑定', path: '/pages/outbound/shelf-bind'}]}, // {title: '产线管理', path: 'RF07', sonTree: [{title: '产线叫料', path: '/pages/outbound/line-callmater'}, {title: '线边仓出库', path: '/pages/outbound/mater-outstore'}, {title: '出库确认', path: '/pages/outbound/out-store-confirm'}]}, // {title: '入库管理', path: 'RF01', sonTree: [{title: '物料组盘', path: '/pages/entry/mater-group'}, {title: '组盘入库', path: '/pages/entry/groupplate-instore'}, {title: '货架绑定', path: '/pages/outbound/shelf-bind'}, {title: '拣选余料回库', path: '/pages/entry/pick-yl-return-store'}, {title: '空载具入库', path: '/pages/entry/empty-vehicle-instore'}]}, diff --git a/pages/zw/kzj-instore.vue b/pages/zw/kzj-instore.vue new file mode 100644 index 0000000..b934b34 --- /dev/null +++ b/pages/zw/kzj-instore.vue @@ -0,0 +1,110 @@ + + + + + diff --git a/pages/zw/kzj-outstore.vue b/pages/zw/kzj-outstore.vue new file mode 100644 index 0000000..449cfb4 --- /dev/null +++ b/pages/zw/kzj-outstore.vue @@ -0,0 +1,110 @@ + + + + + diff --git a/pages/zw/manual-callmater.vue b/pages/zw/manual-callmater.vue new file mode 100644 index 0000000..9d917ed --- /dev/null +++ b/pages/zw/manual-callmater.vue @@ -0,0 +1,150 @@ + + + + + diff --git a/pages/zw/manual-returnmater.vue b/pages/zw/manual-returnmater.vue new file mode 100644 index 0000000..4a35999 --- /dev/null +++ b/pages/zw/manual-returnmater.vue @@ -0,0 +1,137 @@ + + + + + diff --git a/utils/getData4.js b/utils/getData4.js index 6710e7b..d8e4046 100644 --- a/utils/getData4.js +++ b/utils/getData4.js @@ -221,3 +221,27 @@ export const getPlate = (vcode) => request({ url:'api/pda/iosIn/getPlate', data: {vehicle_code: vcode} }) + +// 空载具出入库 +// 空载具入库 +export const vehicleInConfirm = (sectcode, sitecode) => request({ + url:'api/pda/iosIn/vehicleInConfirm', + data: {sect_code: sectcode, site_code: sitecode} +}) +// 空载具出库 +export const iosOutvehicleOutConfirm = (sid, siteCode) => request({ + url:'api/pda/iosOut/vehicleOutConfirm', + data: {sect_id: sid, siteCode: siteCode} +}) + +// 手工叫料/退料 +// 手工叫料 +export const checkoutbillcallMaterial = (dcode, scode, mcode, type) => request({ + url:'api/checkoutbill/callMaterial', + data: {device_code: dcode, struct_code: scode, material_code: mcode, task_type: type} +}) +// 手工叫料 +export const checkoutbillBackMaterial = (dcode, vcode, type) => request({ + url:'api/checkoutbill/BackMaterial', + data: {device_code: dcode, vehicle_code: vcode, task_type: type} +})