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.
 
 
 
 
 

33 lines
987 B

import Layout from '@/views/layout/Layout'
const others = {
path: '/others',
component: Layout,
meta: {title: '其他', icon: 'dingdan', noCache: true, affix: false},
code: '9900',
children: [
{
path: '/configuration',
code: '9904',
component: () => import('@/views/otherPage/index'),
name: '页面配置',
meta: {title: '页面配置', noCache: false, affix: false},
},
{
path: '/others1',
code: '9902',
component: () => import('@/views/lists/index'),
name: '光荣榜',
meta: {title: '光荣榜', noCache: false, affix: false}
},
{
path: '/others2',
code: '9903',
component: () => import('@/views/lists/index'),
name: '今天我出境',
meta: {title: '今天我出境', noCache: false, affix: false},
},
]
};
export default others