From e2c12e3fd8a829b0519bf82450b2ba6b0dec622a Mon Sep 17 00:00:00 2001 From: zwq Date: Fri, 19 Aug 2022 14:59:26 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/router/index.js | 6 +- src/views/common/Problem-add.vue | 96 ++++++ src/views/common/Problem.vue | 106 ++++++ src/views/common/order-auto-submit.vue | 5 +- src/views/common/order-process-submit.vue | 144 ++++++++ src/views/common/order-process.vue | 94 +----- src/views/main-sidebar.vue | 13 +- src/views/order/current-task.vue | 36 +- src/views/report/APMS-work.vue | 310 ++++++++++++++++++ .../report/components/task-history-result.vue | 256 +++++++++++++++ src/views/report/task-history.vue | 28 +- 11 files changed, 993 insertions(+), 101 deletions(-) create mode 100644 src/views/common/Problem-add.vue create mode 100644 src/views/common/Problem.vue create mode 100644 src/views/common/order-process-submit.vue create mode 100644 src/views/report/APMS-work.vue create mode 100644 src/views/report/components/task-history-result.vue diff --git a/src/router/index.js b/src/router/index.js index 4c3d6c9..b9c9810 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -2,7 +2,7 @@ * @Author: zwq * @Date: 2021-11-15 08:20:28 * @LastEditors: zwq - * @LastEditTime: 2022-07-07 09:48:49 + * @LastEditTime: 2022-08-11 16:22:10 * @Description: */ /** @@ -40,7 +40,8 @@ const mainRoutes = { // 2. iframeUrl: 是否通过iframe嵌套展示内容, '以http[s]://开头': 是, '': 否 // 提示: 如需要通过iframe嵌套展示内容, 但不通过tab打开, 请自行创建组件使用iframe处理! { path: '/home', component: _import('common/home'), name: 'home', meta: { title: '首页', isTab: true } }, - { path: '/orderProcess', component: _import('common/order-process'), name: 'orderProcess', meta: { title: '订单加工', isTab: true } }, + { path: '/Problem', component: _import('common/Problem'), name: 'Problem', meta: { title: '常见问题汇总', isTab: true } }, + { path: '/orderProcess', component: _import('common/order-process'), name: 'orderProcess', meta: { title: '单步骤任务', isTab: true } }, { path: '/orderAuto', component: _import('common/order-auto'), name: 'orderAuto', meta: { title: '自动任务', isTab: true } }, { path: '/exWarehouse', component: _import('common/ex-warehouse'), name: 'exWarehouse', meta: { title: '货物出库', isTab: true } }, { path: '/addProcess', component: _import('common/add-process'), name: 'addProcess', meta: { title: '追加加工', isTab: true } }, @@ -60,6 +61,7 @@ const mainRoutes = { { path: '/report-kiln-alarm', component: _import('report/kiln-alarm'), name: 'report-kiln-alarm', meta: { title: '工业炉报警', isTab: true } }, { path: '/report-car-alarm', component: _import('report/car-alarm'), name: 'report-car-alarm', meta: { title: '车辆运行报警', isTab: true } }, { path: '/report-order-history', component: _import('report/order-history'), name: 'report-order-history', meta: { title: '订单历史列表', isTab: true } }, + { path: '/report-APMS-work', component: _import('report/APMS-work'), name: 'report-APMS-work', meta: { title: 'APMS报工', isTab: true } }, { path: '/report-order-history-task', component: _import('report/components/order-history-task'), name: 'report-order-history-task', meta: { title: '订单历史任务详情', isTab: true } }, { path: '/report-task-history', component: _import('report/task-history'), name: 'report-task-history', meta: { title: '执行任务历史列表', isTab: true } }, { path: '/report-task-history-detail', component: _import('report/components/task-history-detail'), name: 'report-task-history-detail', meta: { title: '执行任务历史详情', isTab: true } }, diff --git a/src/views/common/Problem-add.vue b/src/views/common/Problem-add.vue new file mode 100644 index 0000000..285fb4c --- /dev/null +++ b/src/views/common/Problem-add.vue @@ -0,0 +1,96 @@ + + + + diff --git a/src/views/common/Problem.vue b/src/views/common/Problem.vue new file mode 100644 index 0000000..a16333b --- /dev/null +++ b/src/views/common/Problem.vue @@ -0,0 +1,106 @@ + + + + + + diff --git a/src/views/common/order-auto-submit.vue b/src/views/common/order-auto-submit.vue index 228b16f..b9d9c95 100644 --- a/src/views/common/order-auto-submit.vue +++ b/src/views/common/order-auto-submit.vue @@ -2,14 +2,14 @@ * @Author: gtz * @Date: 2022-03-04 10:22:13 * @LastEditors: zwq - * @LastEditTime: 2022-07-13 10:11:05 + * @LastEditTime: 2022-08-05 09:05:08 * @Description: file content * @FilePath: \mt-qj-wms-ui\src\views\common\order-auto-submit.vue --> + + diff --git a/src/views/report/APMS-work.vue b/src/views/report/APMS-work.vue new file mode 100644 index 0000000..c9c4df6 --- /dev/null +++ b/src/views/report/APMS-work.vue @@ -0,0 +1,310 @@ + + + + diff --git a/src/views/report/components/task-history-result.vue b/src/views/report/components/task-history-result.vue new file mode 100644 index 0000000..b1b9bb6 --- /dev/null +++ b/src/views/report/components/task-history-result.vue @@ -0,0 +1,256 @@ + + + + diff --git a/src/views/report/task-history.vue b/src/views/report/task-history.vue index c521194..bcb2ba6 100644 --- a/src/views/report/task-history.vue +++ b/src/views/report/task-history.vue @@ -108,7 +108,17 @@ + > + --> + + @@ -144,10 +154,12 @@ layout="total, sizes, prev, pager, next, jumper" > +