diff --git a/pages.json b/pages.json index aec5e87..be19e4d 100644 --- a/pages.json +++ b/pages.json @@ -90,6 +90,22 @@ } } + ,{ + "path" : "pages/manage/call-empty-tray", + "style" : + { + "navigationStyle": "custom" + } + + } + ,{ + "path" : "pages/manage/send-empty-tray", + "style" : + { + "navigationStyle": "custom" + } + + } ], "globalStyle": { // "pageOrientation": "landscape", diff --git a/pages/home/home.vue b/pages/home/home.vue index 8fc4492..db7cd23 100644 --- a/pages/home/home.vue +++ b/pages/home/home.vue @@ -52,7 +52,9 @@ {id: 6, title: '点位更新', icon: 'RF06', path: '/pages/manage/point-update'}, {id: 7, title: '定点作业', icon: 'RF07', path: '/pages/manage/fixed-point-task'}, {id: 8, title: '作业管理', icon: 'RF08', path: '/pages/manage/task-manage'}, - {id: 9, title: '出库确认', icon: 'RF09', path: '/pages/manage/out-storage-confirm'} + {id: 9, title: '出库确认', icon: 'RF09', path: '/pages/manage/out-storage-confirm'}, + {id: 10, title: '呼叫空托盘', icon: 'RF10', path: '/pages/manage/call-empty-tray'}, + {id: 11, title: '送空托盘', icon: 'RF11', path: '/pages/manage/send-empty-tray'} ], show: false, secM: [] diff --git a/pages/manage/call-empty-tray.vue b/pages/manage/call-empty-tray.vue new file mode 100644 index 0000000..a56cf1b --- /dev/null +++ b/pages/manage/call-empty-tray.vue @@ -0,0 +1,98 @@ + + + + + diff --git a/pages/manage/send-empty-tray.vue b/pages/manage/send-empty-tray.vue new file mode 100644 index 0000000..59bab77 --- /dev/null +++ b/pages/manage/send-empty-tray.vue @@ -0,0 +1,98 @@ + + + + + diff --git a/static/image/menu/RF10.png b/static/image/menu/RF10.png new file mode 100644 index 0000000..d648d05 Binary files /dev/null and b/static/image/menu/RF10.png differ diff --git a/static/image/menu/RF11.png b/static/image/menu/RF11.png new file mode 100644 index 0000000..b48d6da Binary files /dev/null and b/static/image/menu/RF11.png differ diff --git a/utils/getData2.js b/utils/getData2.js index 2ab03b8..961039f 100644 --- a/utils/getData2.js +++ b/utils/getData2.js @@ -230,4 +230,20 @@ export const fullVehicleOutConfirm = (code, vcode, num) => request({ vehicle_code: vcode, residue_num: num } -}) \ No newline at end of file +}) +// 呼叫空托盘 +export const lmzbCallEmptyVehicle = (type, code) => request({ + url:'api/pda/lmzbCallEmptyVehicle', + data: { + vehicle_type: type, + point_code: code + } +}) +// 送空托盘 +export const sendEmptyVehicle = (type, code) => request({ + url:'api/pda/sendEmptyVehicle', + data: { + vehicle_type: type, + point_code: code + } +})