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.
 
 
 
 
 
 

34 lines
748 B

/** 定时任务路由 */
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.Reports'],
icon: '结算对比'
}
}
]
}
export default JobTimeDataRouter