diff --git a/pages/home/home.vue b/pages/home/home.vue index 21175c6..fe62546 100644 --- a/pages/home/home.vue +++ b/pages/home/home.vue @@ -53,8 +53,11 @@ // {menu_id: '6', icon: 'RF07', name: '强制静置', path: '/pages/modules/forced-rest', sonTree: []} // ], menuList: [ - {menu_id: '1', icon: 'RF01', name: '设备点检', path: '/pages/modules/equip-inspection', sonTree: []}, - {menu_id: '3', icon: 'RF03', name: '人工分拣', path: '', sonTree: [ + {menu_id: '1', icon: 'RF06', name: '混碾搬运', path: '/pages/modules/hunnian-carry', sonTree: []}, + {menu_id: '2', icon: 'RF07', name: '强制静置', path: '/pages/modules/forced-rest', sonTree: []}, + {menu_id: '3', icon: 'RF01', name: '设备点检', path: '/pages/modules/equip-inspection', sonTree: []}, + {menu_id: '4', icon: 'RF05', name: '人工组盘', path: '/pages/modules/man-group', sonTree: []}, + {menu_id: '5', icon: 'RF09', name: '人工分拣', path: '', sonTree: [ {menu_id: '1', name: '分拣排产', path: '/pages/modules/sort-schedue'}, {menu_id: '2', name: '剩料入库', path: '/pages/modules/surplus-mater-instore'}, {menu_id: '3', name: '托盘绑定', path: '/pages/modules/pallet-bind'}, @@ -63,9 +66,8 @@ {menu_id: '6', name: '呼叫木盘', path: '/pages/modules/call-mupan'}, {menu_id: '7', name: '空盘入库', path: '/pages/modules/empty-instore'} ]}, - {menu_id: '4', icon: 'RF05', name: '人工组盘', path: '/pages/modules/man-group', sonTree: []}, - {menu_id: '5', icon: 'RF06', name: '混碾搬运', path: '/pages/modules/hunnian-carry', sonTree: []}, - {menu_id: '6', icon: 'RF07', name: '强制静置', path: '/pages/modules/forced-rest', sonTree: []} + {menu_id: '6', icon: 'RF10', name: '压机搬运', path: '/pages/modules/press-carry', sonTree: []}, + {menu_id: '7', icon: 'RF08', name: '货架盘点', path: '/pages/modules/shelf-check', sonTree: []} ], show: false, secM: [] diff --git a/pages/modules/shelf-check.vue b/pages/modules/shelf-check.vue index 239d03a..ce23c65 100644 --- a/pages/modules/shelf-check.vue +++ b/pages/modules/shelf-check.vue @@ -1,19 +1,142 @@ diff --git a/static/image/menu/RF08.png b/static/image/menu/RF08.png new file mode 100644 index 0000000..d2b969b Binary files /dev/null and b/static/image/menu/RF08.png differ diff --git a/static/image/menu/RF09.png b/static/image/menu/RF09.png new file mode 100644 index 0000000..972a492 Binary files /dev/null and b/static/image/menu/RF09.png differ diff --git a/static/image/menu/RF10.png b/static/image/menu/RF10.png new file mode 100644 index 0000000..7e9ddd2 Binary files /dev/null and b/static/image/menu/RF10.png differ diff --git a/utils/getData2.js b/utils/getData2.js index 3627a4a..10e8739 100644 --- a/utils/getData2.js +++ b/utils/getData2.js @@ -133,4 +133,26 @@ export const manualSortingPackingTask = (code, qty, sqty) => request({ qty: qty, surplus_quantity: sqty } +}) + +/** + * 货架盘点 + */ +// 物料查询 +export const shelfMaterialQuery = (code) => request({ + url:'api/pda/shelf/materialQuery', + data: { + material_code: code + } +}) +// 确认 +export const shelfUpdateData = (code, status, vcode, qty, id) => request({ + url:'api/pda/shelf/updateData', + data: { + point_code: code, + point_status: status, + vehicle_code: vcode, + material_qty: qty, + material_id: id + } }) \ No newline at end of file