This commit is contained in:
2024-07-02 14:03:03 +08:00
parent fe13618dd8
commit f62394fe60
5 changed files with 50 additions and 2 deletions

BIN
src/images/icon/RF18.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

BIN
src/images/icon/RF19.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
src/images/icon/RF20.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

View File

@@ -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'}
]
}
}
},

View File

@@ -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) {