You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
118 lines
3.3 KiB
118 lines
3.3 KiB
import Layout from '@/layout'
|
|
|
|
const codemenu = [
|
|
{
|
|
path: '/dispatchmodletemplate',
|
|
component: Layout,
|
|
redirect: '/dispatchmodletemplate/index',
|
|
meta: {
|
|
title: '模型模板对照'
|
|
},
|
|
children: [{
|
|
path: '/dispatchmodletemplate/index',
|
|
component: () => import('@/views/yxtdispatchcenter/dispatchmodletemplate/dispatchmodletemplate.vue'),
|
|
name: 'DispatchModleTemplateIndex',
|
|
meta: { title: '模型模板对照' }
|
|
}]
|
|
},
|
|
{
|
|
path: '/dispatchorderinfo',
|
|
component: Layout,
|
|
redirect: '/dispatchorderinfo/index',
|
|
meta: {
|
|
title: '汇总工单数据'
|
|
},
|
|
children: [{
|
|
path: '/dispatchorderinfo/index',
|
|
component: () => import('@/views/yxtdispatchcenter/dispatchorderinfo/dispatchorderinfo.vue'),
|
|
name: 'DispatchOrderinfoIndex',
|
|
meta: { title: '汇总工单数据' }
|
|
}]
|
|
},
|
|
{
|
|
path: '/dispatchpatrolmodle',
|
|
component: Layout,
|
|
redirect: '/dispatchpatrolmodle/index',
|
|
meta: {
|
|
title: '巡视任务模型,工单和模型之间的关联关系'
|
|
},
|
|
children: [{
|
|
path: '/dispatchpatrolmodle/index',
|
|
component: () => import('@/views/yxtdispatchcenter/dispatchpatrolmodle/dispatchpatrolmodle.vue'),
|
|
name: 'DispatchPatrolModleIndex',
|
|
meta: { title: '巡视任务模型,工单和模型之间的关联关系' }
|
|
}]
|
|
},
|
|
{
|
|
path: '/dispatchpatrolplan',
|
|
component: Layout,
|
|
redirect: '/dispatchpatrolplan/index',
|
|
meta: {
|
|
title: '(巡视计划包含客户信息、仓库等)'
|
|
},
|
|
children: [{
|
|
path: '/dispatchpatrolplan/index',
|
|
component: () => import('@/views/yxtdispatchcenter/dispatchorderinfo/dispatchpatrolplan.vue'),
|
|
name: 'DispatchPatrolPlanIndex',
|
|
meta: { title: '(巡视计划包含客户信息、仓库等)' }
|
|
}]
|
|
},
|
|
{
|
|
path: '/dispatchstandards',
|
|
component: Layout,
|
|
redirect: '/dispatchstandards/index',
|
|
meta: {
|
|
title: '(运维任务标准库)'
|
|
},
|
|
children: [{
|
|
path: '/dispatchstandards/index',
|
|
component: () => import('@/views/yxtdispatchcenter/dispatchmodletemplate/dispatchstandards.vue'),
|
|
name: 'DispatchStandardsIndex',
|
|
meta: { title: '(运维任务标准库)' }
|
|
}]
|
|
},
|
|
{
|
|
path: '/dispatchtemplate',
|
|
component: Layout,
|
|
redirect: '/dispatchtemplate/index',
|
|
meta: {
|
|
title: '运维任务模板'
|
|
},
|
|
children: [{
|
|
path: '/dispatchtemplate/index',
|
|
component: () => import('@/views/yxtdispatchcenter/alarm/historyalarm.vue'),
|
|
name: 'DispatchTemplateIndex',
|
|
meta: { title: '运维任务模板' }
|
|
}]
|
|
},
|
|
{
|
|
path: '/dispatchworker',
|
|
component: Layout,
|
|
redirect: '/dispatchworker/index',
|
|
meta: {
|
|
title: '工单运维人员情况'
|
|
},
|
|
children: [{
|
|
path: '/dispatchworker/index',
|
|
component: () => import('@/views/yxtdispatchcenter/alarm/realalarm.vue'),
|
|
name: 'DispatchWorkerIndex',
|
|
meta: { title: '工单运维人员情况' }
|
|
}]
|
|
},
|
|
{
|
|
path: '/sysmenu',
|
|
component: Layout,
|
|
redirect: '/sysmenu/index',
|
|
meta: {
|
|
title: '菜单表'
|
|
},
|
|
children: [{
|
|
path: '/sysmenu/index',
|
|
component: () => import('@/views/yxtdispatchcenter/sysmenu/sysmenu.vue'),
|
|
name: 'SysMenuIndex',
|
|
meta: { title: '菜单表' }
|
|
}]
|
|
}
|
|
|
|
]
|
|
export default codemenu
|
|
|