diff --git a/pages.json b/pages.json index 06306f9..ba6a1e2 100644 --- a/pages.json +++ b/pages.json @@ -111,6 +111,20 @@ "navigationStyle": "custom" } + }, + { + "path" : "pages/task/sgrk", + "style" : + { + "navigationStyle": "custom" + } + }, + { + "path" : "pages/task/sgck", + "style" : + { + "navigationStyle": "custom" + } } ], "globalStyle": { diff --git a/pages/home/home.vue b/pages/home/home.vue index a57b559..e42774b 100644 --- a/pages/home/home.vue +++ b/pages/home/home.vue @@ -42,7 +42,9 @@ {title: '手工组盘', icon: 'RF8', path: '/pages/task/sgzp'}, {title: '空托盘入库', icon: 'RF9', path: '/pages/task/ktprk'}, {title: '空托盘出库', icon: 'RF10', path: '/pages/task/ktpck'}, - {title: '点对点任务', icon: 'RF11', path: '/pages/task/ddrw'} + {title: '点对点任务', icon: 'RF11', path: '/pages/task/ddrw'}, + {title: '手工入库', icon: 'RF12', path: '/pages/task/sgrk'}, + {title: '手工出库', icon: 'RF13', path: '/pages/task/sgck'} ], show: false, secM: [] diff --git a/pages/task/sgck.vue b/pages/task/sgck.vue new file mode 100644 index 0000000..b98ed1e --- /dev/null +++ b/pages/task/sgck.vue @@ -0,0 +1,85 @@ + + + + + diff --git a/pages/task/sgrk.vue b/pages/task/sgrk.vue new file mode 100644 index 0000000..d7c6949 --- /dev/null +++ b/pages/task/sgrk.vue @@ -0,0 +1,175 @@ + + + \ No newline at end of file diff --git a/static/image/menu/RF12.png b/static/image/menu/RF12.png new file mode 100644 index 0000000..7c0d8cc Binary files /dev/null and b/static/image/menu/RF12.png differ diff --git a/static/image/menu/RF13.png b/static/image/menu/RF13.png new file mode 100644 index 0000000..942fa54 Binary files /dev/null and b/static/image/menu/RF13.png differ diff --git a/utils/getData.js b/utils/getData.js index 9a48741..4c3c1a0 100644 --- a/utils/getData.js +++ b/utils/getData.js @@ -156,4 +156,14 @@ export const empVehicleOut = (code, type) => request({ export const pointToPoint = (code1, code2, vcode, type, is) => request({ url:'api/pda/schPoint/pointToPoint', data: {point_code1: code1, point_code2: code2, vehicle_code: vcode, task_type: type, is_vehicle: is} +}) +// 手工入库确认 +export const handIn = (code, point, id) => request({ + url:'api/pda/iosIn/handIn', + data: {storagevehicle_code: code, point_code: point, sect_id: id} +}) +// 手工出库确认 +export const handOut = (code, point) => request({ + url:'api/pda/iosOut/handOut', + data: {storagevehicle_code: code, point_code: point} }) \ No newline at end of file