diff --git a/config/index.js b/config/index.js index 505ca0f..2671b10 100644 --- a/config/index.js +++ b/config/index.js @@ -1,8 +1,8 @@ /* * @Author: gtz * @Date: 2021-11-19 10:10:51 - * @LastEditors: gtz - * @LastEditTime: 2022-03-05 16:16:24 + * @LastEditors: zwq + * @LastEditTime: 2022-07-01 11:05:12 * @Description: file content * @FilePath: \mt-qj-wms-ui\config\index.js */ @@ -31,7 +31,7 @@ module.exports = { }, // Various Dev Server settings - host: '0.0.0.0', // can be overwritten by process.env.HOST + host: 'localhost', // can be overwritten by process.env.HOST port: 8001, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined autoOpenBrowser: true, errorOverlay: true, diff --git a/src/assets/img/board/1.png b/src/assets/img/board/1.png new file mode 100644 index 0000000..d8e3f81 Binary files /dev/null and b/src/assets/img/board/1.png differ diff --git a/src/assets/img/board/2.png b/src/assets/img/board/2.png new file mode 100644 index 0000000..99c07c8 Binary files /dev/null and b/src/assets/img/board/2.png differ diff --git a/src/assets/img/board/lu/BMA1.png b/src/assets/img/board/lu/BMA1.png new file mode 100644 index 0000000..16d1249 Binary files /dev/null and b/src/assets/img/board/lu/BMA1.png differ diff --git a/src/assets/img/board/lu/BMA2.png b/src/assets/img/board/lu/BMA2.png new file mode 100644 index 0000000..4540bdd Binary files /dev/null and b/src/assets/img/board/lu/BMA2.png differ diff --git a/src/assets/img/board/lu/BMA3.png b/src/assets/img/board/lu/BMA3.png new file mode 100644 index 0000000..b334fb1 Binary files /dev/null and b/src/assets/img/board/lu/BMA3.png differ diff --git a/src/assets/img/board/lu/BMA4.png b/src/assets/img/board/lu/BMA4.png new file mode 100644 index 0000000..f6a39d1 Binary files /dev/null and b/src/assets/img/board/lu/BMA4.png differ diff --git a/src/assets/img/board/lu/BMB1.png b/src/assets/img/board/lu/BMB1.png new file mode 100644 index 0000000..086a9bc Binary files /dev/null and b/src/assets/img/board/lu/BMB1.png differ diff --git a/src/assets/img/board/lu/BMB2.png b/src/assets/img/board/lu/BMB2.png new file mode 100644 index 0000000..561b1f0 Binary files /dev/null and b/src/assets/img/board/lu/BMB2.png differ diff --git a/src/assets/img/board/lu/BMB3.png b/src/assets/img/board/lu/BMB3.png new file mode 100644 index 0000000..abfd5a1 Binary files /dev/null and b/src/assets/img/board/lu/BMB3.png differ diff --git a/src/assets/img/board/lu/BMC1.png b/src/assets/img/board/lu/BMC1.png new file mode 100644 index 0000000..4520746 Binary files /dev/null and b/src/assets/img/board/lu/BMC1.png differ diff --git a/src/assets/img/board/lu/BMC2.png b/src/assets/img/board/lu/BMC2.png new file mode 100644 index 0000000..52014c4 Binary files /dev/null and b/src/assets/img/board/lu/BMC2.png differ diff --git a/src/assets/img/board/lu/BMC3.png b/src/assets/img/board/lu/BMC3.png new file mode 100644 index 0000000..284a276 Binary files /dev/null and b/src/assets/img/board/lu/BMC3.png differ diff --git a/src/assets/img/board/lu/BMC4.png b/src/assets/img/board/lu/BMC4.png new file mode 100644 index 0000000..e16f0ab Binary files /dev/null and b/src/assets/img/board/lu/BMC4.png differ diff --git a/src/assets/img/board/lu/BMD .png b/src/assets/img/board/lu/BMD .png new file mode 100644 index 0000000..1220031 Binary files /dev/null and b/src/assets/img/board/lu/BMD .png differ diff --git a/src/router/index.js b/src/router/index.js index f562a8e..ef77fc7 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -1,8 +1,8 @@ /* * @Author: zwq * @Date: 2021-11-15 08:20:28 - * @LastEditors: gtz - * @LastEditTime: 2022-03-05 16:05:35 + * @LastEditors: zwq + * @LastEditTime: 2022-07-01 11:11:17 * @Description: */ /** @@ -39,6 +39,7 @@ const mainRoutes = { // 2. iframeUrl: 是否通过iframe嵌套展示内容, '以http[s]://开头': 是, '': 否 // 提示: 如需要通过iframe嵌套展示内容, 但不通过tab打开, 请自行创建组件使用iframe处理! { path: '/home', component: _import('common/home'), name: 'home', meta: { title: '首页', isTab: true } }, + { path: '/board', component: _import('common/board'), name: 'board', meta: { title: '车间生产看板', isTab: false } }, { 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 } }, diff --git a/src/views/common/board-part-table.vue b/src/views/common/board-part-table.vue new file mode 100644 index 0000000..c1477c9 --- /dev/null +++ b/src/views/common/board-part-table.vue @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/views/common/board-part.vue b/src/views/common/board-part.vue new file mode 100644 index 0000000..f945c19 --- /dev/null +++ b/src/views/common/board-part.vue @@ -0,0 +1,226 @@ + + + + + + 加工单信息 + + + + + + + 炉号 + + + + + + 1293803 + 加工单编号 + + + + + 129 + 工艺号 + + + + + + + {{ hour }}:{{ minute }}:{{ second }} + 剩余时间 + + + + + + + 标识信息卡 + + + + + + + + + diff --git a/src/views/common/board.vue b/src/views/common/board.vue new file mode 100644 index 0000000..493069d --- /dev/null +++ b/src/views/common/board.vue @@ -0,0 +1,128 @@ + + + + + 浙江求精科技车间生产看板 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/views/main-sidebar.vue b/src/views/main-sidebar.vue index 0b396a1..5a4bbb0 100644 --- a/src/views/main-sidebar.vue +++ b/src/views/main-sidebar.vue @@ -11,6 +11,10 @@ 首页 + + + 车间生产看板 + diff --git a/static/img/lu/BMA1.png b/static/img/lu/BMA1.png new file mode 100644 index 0000000..16d1249 Binary files /dev/null and b/static/img/lu/BMA1.png differ diff --git a/static/img/lu/BMA2.png b/static/img/lu/BMA2.png new file mode 100644 index 0000000..4540bdd Binary files /dev/null and b/static/img/lu/BMA2.png differ diff --git a/static/img/lu/BMA3.png b/static/img/lu/BMA3.png new file mode 100644 index 0000000..b334fb1 Binary files /dev/null and b/static/img/lu/BMA3.png differ diff --git a/static/img/lu/BMA4.png b/static/img/lu/BMA4.png new file mode 100644 index 0000000..f6a39d1 Binary files /dev/null and b/static/img/lu/BMA4.png differ diff --git a/static/img/lu/BMB1.png b/static/img/lu/BMB1.png new file mode 100644 index 0000000..086a9bc Binary files /dev/null and b/static/img/lu/BMB1.png differ diff --git a/static/img/lu/BMB2.png b/static/img/lu/BMB2.png new file mode 100644 index 0000000..561b1f0 Binary files /dev/null and b/static/img/lu/BMB2.png differ diff --git a/static/img/lu/BMB3.png b/static/img/lu/BMB3.png new file mode 100644 index 0000000..abfd5a1 Binary files /dev/null and b/static/img/lu/BMB3.png differ diff --git a/static/img/lu/BMC1.png b/static/img/lu/BMC1.png new file mode 100644 index 0000000..4520746 Binary files /dev/null and b/static/img/lu/BMC1.png differ diff --git a/static/img/lu/BMC2.png b/static/img/lu/BMC2.png new file mode 100644 index 0000000..52014c4 Binary files /dev/null and b/static/img/lu/BMC2.png differ diff --git a/static/img/lu/BMC3.png b/static/img/lu/BMC3.png new file mode 100644 index 0000000..284a276 Binary files /dev/null and b/static/img/lu/BMC3.png differ diff --git a/static/img/lu/BMC4.png b/static/img/lu/BMC4.png new file mode 100644 index 0000000..e16f0ab Binary files /dev/null and b/static/img/lu/BMC4.png differ diff --git a/static/img/lu/BMD .png b/static/img/lu/BMD .png new file mode 100644 index 0000000..1220031 Binary files /dev/null and b/static/img/lu/BMD .png differ