123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- export default [
- {
- path: '/user',
- component: '../layouts/UserLayout',
- routes: [
- {
- name: 'login',
- path: '/user/login',
- component: './user/login',
- },
- ],
- },
- {
- path: '/',
- component: '../layouts/SecurityLayout',
- routes: [
- {
- path: '/',
- component: '../layouts/BasicLayout',
- authority: ['admin', 'user'],
- routes: [
- {
- path: '/',
- redirect: '/channel',
- },
- // {
- // path: '/welcome',
- // name: '首页',
- // component: './Welcome',
- // },
- {
- path: '/channel',
- name: '渠道列表',
- component: './channel',
- },
- {
- path: '/channel/edit',
- name: '渠道列表',
- hideInMenu: true,
- component: './channel/edit',
- },
- {
- path: '/sample',
- name: 'H5样例管理',
- component: '../layouts/BlankLayout',
- routes: [
- {
- path: '/sample/h5/list',
- name: 'H5样例',
- component: './sample/h5/index',
- },
- {
- path: '/sample/h5/edit',
- name: 'H5样例编辑',
- hideInMenu: true,
- component: './sample/h5/edit',
- },
- {
- path: '/sample/demand/list',
- name: 'H5需求单',
- component: './sample/demand/index',
- },
- {
- path: '/sample/demand/edit',
- name: 'H5需求单详情',
- hideInMenu: true,
- component: './sample/demand/edit',
- },
- ],
- },
- {
- path: '/resource',
- name: '资源位管理',
- component: '../layouts/BlankLayout',
- routes: [
- {
- path: '/resource/openScreen',
- name: '开屏通知',
- component: './resource/openScreen',
- },
- {
- path: '/resource/openScreen/edit',
- name: '开屏通知修改',
- hideInMenu: true,
- component: './resource/openScreen/edit',
- },
- ],
- },
-
- {
- component: './404',
- },
- ],
- },
- {
- component: './404',
- },
- ],
- },
- {
- component: './404',
- },
- ];
|