const projectRouter = { route: null, name: null, title: '客户管理', type: 'folder', // 类型: folder, tab, view icon: 'iconfont icon-tushuguanli', isElementIcon: false, filePath: 'view/company/', // 文件路径 order: null, inNav: true, children: [ { title: '客户信息', type: 'view', name: 'companyList', route: '/company/list', filePath: 'view/company/company-list.vue', inNav: true, icon: 'iconfont icon-tushuguanli', isElementIcon: false, permission: ['客户列表'], }, { title: '客户联系人', type: 'view', name: 'contactList', route: '/contact/list', filePath: 'view/contact/contact-list.vue', inNav: true, icon: 'iconfont icon-tushuguanli', isElementIcon: false, permission: ['客户联系人列表'], }, ], } export default projectRouter