12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- export default [
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {
- path: '/',
- redirect: '/rotationChart/list',
- },
- {
- path: '/rotationChart/list',
- name: '轮播图管理',
- icon: 'smile',
- component: './rotationChart/list',
- },
- {
- path: '/rotationChart/add',
- name: '轮播图新增',
- icon: 'smile',
- hideInMenu: true,
- component: './rotationChart/edit',
- },
- {
- path: '/rotationChart/edit',
- name: '轮播图编辑',
- icon: 'smile',
- hideInMenu: true,
- component: './rotationChart/edit',
- },
- {
- component: './404',
- },
- ];
|