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.
20 lines
617 B
20 lines
617 B
const Base = () => import('/nerv-lib/saas/view/system/layout/content.vue');
|
|
const organizationManage = {
|
|
path: '/organizationManage',
|
|
name: 'EnterpriseManage',
|
|
meta: { title: '企业管理', icon: 'dicizhishou', index: 99, hideChildren: true },
|
|
redirect: { name: 'EnterpriseManageIndex' },
|
|
children: [
|
|
{
|
|
path: 'index',
|
|
name: 'EnterpriseManageIndex',
|
|
component: () => import('/@/view/organizationManage/enterpriseManage/index.vue'),
|
|
meta: {
|
|
title: '企业管理',
|
|
keepAlive: true,
|
|
// backApi: [],
|
|
},
|
|
},
|
|
],
|
|
};
|
|
export default organizationManage;
|
|
|