diff --git a/pages.json b/pages.json index cdd52a3..f42a362 100644 --- a/pages.json +++ b/pages.json @@ -198,7 +198,6 @@ { "navigationStyle": "custom" } - } ,{ "path" : "pages/ProductManage/SlittingFeeding", @@ -207,6 +206,13 @@ "enablePullDownRefresh": true, "onReachBottomDistance": 50 } + }, + { + "path": "pages/DispatchManage/TaskManage", + "style" : + { + "navigationStyle": "custom" + } } ], "globalStyle": { diff --git a/pages/DispatchManage/TaskManage.vue b/pages/DispatchManage/TaskManage.vue new file mode 100644 index 0000000..d754bee --- /dev/null +++ b/pages/DispatchManage/TaskManage.vue @@ -0,0 +1,134 @@ + + + + + diff --git a/static/image/.DS_Store b/static/image/.DS_Store index 473fbc2..3684645 100644 Binary files a/static/image/.DS_Store and b/static/image/.DS_Store differ diff --git a/static/image/menu/RF10.png b/static/image/menu/RF10.png new file mode 100644 index 0000000..15c177a Binary files /dev/null and b/static/image/menu/RF10.png differ diff --git a/utils/getData2.js b/utils/getData2.js index d90c2f0..5620f00 100644 --- a/utils/getData2.js +++ b/utils/getData2.js @@ -70,6 +70,9 @@ export const authority = () => { ]}, {menu_id: '9', path: 'RF09', name: '打印管理', sonTree: [ {menu_id: '1', name: '客户标签打印', path: '/pages/WarehouseManage/CustomerLabelPrint'}, + ]}, + {menu_id: '10', path: 'RF10', name: '调度管理', sonTree: [ + {menu_id: '1', name: '任务管理', path: '/pages/DispatchManage/TaskManage'}, ]} ] } @@ -357,4 +360,29 @@ export const feedingConfirm = (row) => request({ data: { cut_rows: row } +}) + +/** + * 任务管理 + */ +//1.1任务查询 +export const taskTaskQuery = (search) => request({ +url:'api/pda/task/taskQuery', +data: { + search: search +} +}) +//1.2重新下发 +export const againLssued = (row) => request({ +url:'api/pda/task/againLssued', +data: { + task_rows: row +} +}) +//1.3强制完成 +export const taskConfirm = (row) => request({ +url:'api/pda/task/confirm', +data: { + task_rows: row +} }) \ No newline at end of file