diff --git a/pages.json b/pages.json index 2ffbe9e..bcdb87d 100644 --- a/pages.json +++ b/pages.json @@ -111,6 +111,13 @@ { "navigationStyle": "custom" } + }, + { + "path" : "pages/manage/empty-carrier-warehousing", + "style" : + { + "navigationStyle": "custom" + } } ], "globalStyle": { diff --git a/pages/home/home.vue b/pages/home/home.vue index 25fa48e..5f1f941 100644 --- a/pages/home/home.vue +++ b/pages/home/home.vue @@ -43,7 +43,8 @@ {title: '呼叫物料', icon: 'RF09', path: '/pages/manage/call-mater'}, {title: '补空框', icon: 'RF10', path: '/pages/manage/fill-empty'}, {title: '合托', icon: 'RF11', path: '/pages/manage/merge-pallet'}, - {title: '物料扣减', icon: 'RF12', path: '/pages/manage/mater-update'} + {title: '物料扣减', icon: 'RF12', path: '/pages/manage/mater-update'}, + {title: '空载具入库', icon: 'RF13', path: '/pages/manage/empty-carrier-warehousing'} ], show: false, secM: [] diff --git a/pages/manage/empty-carrier-warehousing.vue b/pages/manage/empty-carrier-warehousing.vue new file mode 100644 index 0000000..70ca158 --- /dev/null +++ b/pages/manage/empty-carrier-warehousing.vue @@ -0,0 +1,207 @@ + + + + + + + + 点位 + + + + + + + + 载具编码 + + + + + + + + + + + + 点位 + 载具编码 + 删除 + + + + + {{e.point_code}} + {{e.vehicle_code}} + 删除 + + + {{uncompletedItem.point_code || '待扫描'}} + {{uncompletedItem.vehicle_code || '待扫描'}} + + 清空 + + + + + 请扫描点位和载具编码 + + + + + 提交 + + + + + + + diff --git a/static/image/menu/RF13.png b/static/image/menu/RF13.png new file mode 100644 index 0000000..6053e87 Binary files /dev/null and b/static/image/menu/RF13.png differ diff --git a/utils/getData2.js b/utils/getData2.js index 5e4c13e..c728bb0 100644 --- a/utils/getData2.js +++ b/utils/getData2.js @@ -134,4 +134,10 @@ export const getGroupByVehicleCode = (code) => request({ export const materialUpdate = (code, arr) => request({ url:'api/handheld/materialUpdate', data: {vehicle_code: code, materials: arr} +}) + +// 空载具入库 +export const emptyVehicleWarehousing = (list) => request({ + url:'api/handheld/emptyVehicleWarehousing', + data: {vehicleList: list} }) \ No newline at end of file