Unverified Commit f62348a3 by Sendya

chore: delete list/business-example

parent 2545a22b
...@@ -29,7 +29,7 @@ export const asyncRouterMap = [ ...@@ -29,7 +29,7 @@ export const asyncRouterMap = [
{ {
path: 'https://www.baidu.com/', path: 'https://www.baidu.com/',
name: 'Monitor', name: 'Monitor',
meta: { title: '监控页', target: '_blank' } meta: { title: '监控页(外部)', target: '_blank' }
}, },
{ {
path: '/dashboard/workplace', path: '/dashboard/workplace',
...@@ -84,42 +84,6 @@ export const asyncRouterMap = [ ...@@ -84,42 +84,6 @@ export const asyncRouterMap = [
meta: { title: '查询表格', keepAlive: true, permission: [ 'table' ] } meta: { title: '查询表格', keepAlive: true, permission: [ 'table' ] }
}, },
{ {
path: '/list/tree-list',
name: 'TreeList',
component: () => import('@/views/list/TreeList'),
meta: { title: '树目录表格', keepAlive: true, permission: [ 'table' ] }
},
{
path: '/list/edit-table',
name: 'EditList',
component: () => import('@/views/list/TableInnerEditList'),
meta: { title: '内联编辑表格', keepAlive: true, permission: [ 'table' ] }
},
{
path: '/list/user-list',
name: 'UserList',
component: () => import('@/views/list/UserList'),
meta: { title: '用户列表', keepAlive: true, permission: [ 'table' ] }
},
{
path: '/list/role-list',
name: 'RoleList',
component: () => import('@/views/list/RoleList'),
meta: { title: '角色列表', keepAlive: true, permission: [ 'table' ] }
},
{
path: '/list/system-role',
name: 'SystemRole',
component: () => import('@/views/role/RoleList'),
meta: { title: '角色列表2', keepAlive: true, permission: [ 'table' ] }
},
{
path: '/list/permission-list',
name: 'PermissionList',
component: () => import('@/views/list/PermissionList'),
meta: { title: '权限列表', keepAlive: true, permission: [ 'table' ] }
},
{
path: '/list/basic-list', path: '/list/basic-list',
name: 'BasicList', name: 'BasicList',
component: () => import('@/views/list/StandardList'), component: () => import('@/views/list/StandardList'),
...@@ -305,7 +269,51 @@ export const asyncRouterMap = [ ...@@ -305,7 +269,51 @@ export const asyncRouterMap = [
path: '/other/icon-selector', path: '/other/icon-selector',
name: 'TestIconSelect', name: 'TestIconSelect',
component: () => import('@/views/other/IconSelectorView'), component: () => import('@/views/other/IconSelectorView'),
meta: { title: 'IconSelector', keepAlive: true, permission: [ 'dashboard' ] } meta: { title: 'IconSelector', icon: 'tool', keepAlive: true, permission: [ 'dashboard' ] }
},
{
path: '/other/list',
component: RouteView,
meta: { title: '业务布局', icon: 'layout', permission: [ 'support' ] },
redirect: '/other/list/tree-list',
children: [
{
path: '/other/list/tree-list',
name: 'TreeList',
component: () => import('@/views/other/TreeList'),
meta: { title: '树目录表格', keepAlive: true }
},
{
path: '/other/list/edit-table',
name: 'EditList',
component: () => import('@/views/other/TableInnerEditList'),
meta: { title: '内联编辑表格', keepAlive: true }
},
{
path: '/other/list/user-list',
name: 'UserList',
component: () => import('@/views/other/UserList'),
meta: { title: '用户列表', keepAlive: true }
},
{
path: '/other/list/role-list',
name: 'RoleList',
component: () => import('@/views/other/RoleList'),
meta: { title: '角色列表', keepAlive: true }
},
{
path: '/other/list/system-role',
name: 'SystemRole',
component: () => import('@/views/role/RoleList'),
meta: { title: '角色列表2', keepAlive: true }
},
{
path: '/other/list/permission-list',
name: 'PermissionList',
component: () => import('@/views/other/PermissionList'),
meta: { title: '权限列表', keepAlive: true }
}
]
} }
] ]
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment