/** 定时任务路由 */ import Layout from '@/layout' const JobTimeDataRouter = { path: '/backwork', component: Layout, redirect: 'backwork', name: 'BackWork', meta: { //requiresAuth: true, title: '系统监控', index: 0, type: 'crm', icon: '红旗', keepAlive: false, }, children: [ { path: '/backGroundWork', component: () => import('@/views/ux/backGroundWork'), name: 'BackGroundWork', meta: { title: '后台作业监控', //roles: ['SettleAccount.HQSPNotConsignReports'], icon: '结算对比' } } ] } export default JobTimeDataRouter