diff --git a/src/images/icon/RF18.png b/src/images/icon/RF18.png new file mode 100644 index 0000000..775f2e8 Binary files /dev/null and b/src/images/icon/RF18.png differ diff --git a/src/images/icon/RF19.png b/src/images/icon/RF19.png new file mode 100644 index 0000000..1c72599 Binary files /dev/null and b/src/images/icon/RF19.png differ diff --git a/src/images/icon/RF20.png b/src/images/icon/RF20.png new file mode 100644 index 0000000..972a492 Binary files /dev/null and b/src/images/icon/RF20.png differ diff --git a/src/pages/login/Home.vue b/src/pages/login/Home.vue index ab428f0..3327a44 100644 --- a/src/pages/login/Home.vue +++ b/src/pages/login/Home.vue @@ -55,8 +55,36 @@ export default { return { tab: Number(this.$store.getters.navTab), menuList: { - menu1: [{title: '指令管理', path: 'zlmanage', icon: 'RF1'}, {title: '任务管理', path: 'taskmanage', icon: 'RF2'}, {title: '不合格品上报', path: 'belowgradereport', icon: 'RF3'}, {title: '送料', path: 'sendmater', icon: 'RF4'}, {title: '叫料', path: 'callmater', icon: 'RF5'}, {title: '送空', path: 'sendempty', icon: 'RF6'}, {title: '叫空', path: 'callempty', icon: 'RF7'}, {title: '困料管理', path: 'KunliaoManage', icon: 'RF8'}, {title: '入窑管理', path: 'RuyaoManage', icon: 'RF9'}, {title: '载具绑定', path: 'VehicleBind', icon: 'RF10'}, {title: '载具解绑', path: 'VehicleUnbind', icon: 'RF11'}, {title: '呼叫次品料', path: 'CallDefective', icon: 'RF12'}, {title: 'AGV充电', path: 'CreateChargingTask', icon: 'RF13'}], - menu2: [{title: '人工异常处理', path: 'ExceptionHand', icon: 'RF14'}, {title: '人工混碾搬运', path: 'MixMove', icon: 'RF15'}, {title: '压机料盅转移', path: 'LzTransfer', icon: 'RF16'}, {title: '人工压制上料', path: 'Suppress', icon: 'RF8'}, {title: '人工压制下料', path: 'SuppressDown', icon: 'RF9'}, {title: '人工出窑', path: 'KilnOut', icon: 'RF4'}, {title: '载具转移', path: 'KilnMove', icon: 'RF17'}, {title: '料盅退料', path: 'MaterReturn', icon: 'RF6'}, {title: '取样计数', path: 'SamplingCount', icon: 'RF1'}] + menu1: [ + {title: '指令管理', path: 'zlmanage', icon: 'RF1'}, + {title: '任务管理', path: 'taskmanage', icon: 'RF2'}, + {title: '不合格品上报', path: 'belowgradereport', icon: 'RF3'}, + {title: '送料', path: 'sendmater', icon: 'RF4'}, + {title: '叫料', path: 'callmater', icon: 'RF5'}, + {title: '送空', path: 'sendempty', icon: 'RF6'}, + {title: '叫空', path: 'callempty', icon: 'RF7'}, + {title: '困料管理', path: 'KunliaoManage', icon: 'RF8'}, + {title: '入窑管理', path: 'RuyaoManage', icon: 'RF9'}, + {title: '载具绑定', path: 'VehicleBind', icon: 'RF10'}, + {title: '载具解绑', path: 'VehicleUnbind', icon: 'RF11'}, + {title: '呼叫次品料', path: 'CallDefective', icon: 'RF12'}, + {title: 'AGV充电', path: 'CreateChargingTask', icon: 'RF13'} + ], + menu2: [ + {title: '人工异常处理', path: 'ExceptionHand', icon: 'RF14'}, + {title: '人工混碾搬运', path: 'MixMove', icon: 'RF15'}, + {title: '压机料盅转移', path: 'LzTransfer', icon: 'RF16'}, + {title: '人工压制上料', path: 'Suppress', icon: 'RF8'}, + {title: '人工压制下料', path: 'SuppressDown', icon: 'RF9'}, + {title: '人工出窑', path: 'KilnOut', icon: 'RF4'}, + {title: '载具转移', path: 'KilnMove', icon: 'RF17'}, + {title: '料盅退料', path: 'MaterReturn', icon: 'RF6'}, + {title: '取样计数', path: 'SamplingCount', icon: 'RF1'}, + {title: '料盅比对', path: 'LzCompare', icon: 'RF20'}, + {title: '修改料盅重量', path: 'UpdateWeight', icon: 'RF18'}, + {title: '修改托盘数量', path: 'UpdateQty', icon: 'RF19'}, + {title: '空盘解绑', path: 'UnbindVehicle', icon: 'RF11'} + ] } } }, diff --git a/src/router/index.js b/src/router/index.js index 425f69b..7117d3e 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -28,6 +28,10 @@ const KilnOut = r => require.ensure([], () => r(require('../pages/manual/KilnOut const KilnMove = r => require.ensure([], () => r(require('../pages/manual/KilnMove')), 'KilnMove') const MaterReturn = r => require.ensure([], () => r(require('../pages/manual/MaterReturn')), 'MaterReturn') const SamplingCount = r => require.ensure([], () => r(require('../pages/manual/SamplingCount')), 'SamplingCount') +const LzCompare = r => require.ensure([], () => r(require('../pages/manual/LzCompare')), 'LzCompare') +const UpdateWeight = r => require.ensure([], () => r(require('../pages/manual/UpdateWeight')), 'UpdateWeight') +const UpdateQty = r => require.ensure([], () => r(require('../pages/manual/UpdateQty')), 'UpdateQty') +const UnbindVehicle = r => require.ensure([], () => r(require('../pages/manual/UnbindVehicle')), 'UnbindVehicle') Vue.use(Router) @@ -143,6 +147,22 @@ export default new Router({ { path: '/SamplingCount', // 取样计数 component: SamplingCount + }, + { + path: '/LzCompare', // 料盅比对 + component: LzCompare + }, + { + path: '/UpdateWeight', // 修改料盅重量 + component: UpdateWeight + }, + { + path: '/UpdateQty', // 修改托盘数量 + component: UpdateQty + }, + { + path: '/UnbindVehicle', // 空盘解绑 + component: UnbindVehicle } ], scrollBehavior (to, from, savedPosition) {