diff --git a/pages.json b/pages.json index 2315ce9..83ec7f4 100644 --- a/pages.json +++ b/pages.json @@ -485,6 +485,13 @@ "navigationStyle": "custom" } } + ,{ + "path" : "pages/zw/wl-groupplate", + "style" : + { + "navigationStyle": "custom" + } + } ], "globalStyle": { // "pageOrientation": "landscape", diff --git a/pages/home/home.vue b/pages/home/home.vue index 19e11b7..d3a3d6a 100644 --- a/pages/home/home.vue +++ b/pages/home/home.vue @@ -42,7 +42,7 @@ 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: 'RF04', sonTree: [{title: '来料入库', path: '/pages/zw/ll-instore'}, {title: '空载具入库', path: '/pages/zw/kzj-instore'}, {title: '空载具出库', path: '/pages/zw/kzj-outstore'}, {title: '点位属性设置', path: '/pages/zw/point-attrset'}]}, + {title: '原料管理', path: 'RF04', sonTree: [{title: '来料入库', path: '/pages/zw/ll-instore'}, {title: '空载具入库', path: '/pages/zw/kzj-instore'}, {title: '空载具出库', path: '/pages/zw/kzj-outstore'}, {title: '点位属性设置', path: '/pages/zw/point-attrset'}, {title: '物料组盘', path: '/pages/zw/wl-groupplate'}]}, {title: '产线管理', path: 'RF07', sonTree: [{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'}]}, diff --git a/pages/zw/wl-groupplate.vue b/pages/zw/wl-groupplate.vue new file mode 100644 index 0000000..bd29585 --- /dev/null +++ b/pages/zw/wl-groupplate.vue @@ -0,0 +1,159 @@ + + + + + diff --git a/utils/getData4.js b/utils/getData4.js index 1b84080..06481e8 100644 --- a/utils/getData4.js +++ b/utils/getData4.js @@ -40,10 +40,10 @@ export const getMaterialList = (search, page, size) => request({ // 入库管理 // 物料组盘确认 -export const groupPlate = (mid, pcsn, qty, vcode, ecode) => request({ - url:'api/pda/iosIn/groupPlate', - data: {material_id: mid, pcsn: pcsn, qty: qty, vehicle_code: vcode, ext_code: ecode} -}) +// export const groupPlate = (mid, pcsn, qty, vcode, ecode) => request({ +// url:'api/pda/iosIn/groupPlate', +// data: {material_id: mid, pcsn: pcsn, qty: qty, vehicle_code: vcode, ext_code: ecode} +// }) // 组盘入库确认 export const confirmIn = (vcode, sitecode, sid) => request({ url:'api/pda/iosIn/confirmIn', @@ -251,3 +251,9 @@ export const updatePointType = (code, type) => request({ url:'api/schBasePoint/updatePointType', data: {point_code: code, point_type: type} }) + +// 组盘入库 +export const groupPlate = (mid, pcsn, qty, vcode, ecode) => request({ + url:'api/pda/iosIn/groupPlate', + data: {material_id: mid, pcsn: pcsn, qty: qty, vehicle_code: vcode, ext_code: ecode} +})