1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
| 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
|
|