feat:
This commit is contained in:
16
config/routes.ts
Normal file
16
config/routes.ts
Normal file
@ -0,0 +1,16 @@
|
||||
export default [
|
||||
{
|
||||
path: '/user',
|
||||
layout: false,
|
||||
routes: [{ name: '登录', path: '/user/login', component: './user/login' }],
|
||||
},
|
||||
{ name: '通告管理', icon: 'table', path: '/list/job', component: './table-list/job' },
|
||||
{ name: '群管理', icon: 'table', path: '/list/group', component: './table-list/group' },
|
||||
{ name: '主播申请进群管理', icon: 'table', path: '/list/anchor-group', component: './table-list/anchor-group' },
|
||||
{ name: '职位发布人管理', icon: 'table', path: '/list/publisher', component: './table-list/publisher' },
|
||||
{ name: '用户管理', icon: 'table', path: '/list/anchor', component: './table-list/anchor' },
|
||||
{ name: '主播报单管理', icon: 'table', path: '/list/declaration', component: './table-list/declaration' },
|
||||
{ name: '模卡管理', icon: 'table', path: '/list/resume', component: './table-list/material' },
|
||||
{ path: '/', redirect: '/list/job' },
|
||||
{ path: '*', layout: false, component: './404' },
|
||||
];
|
Reference in New Issue
Block a user