| 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
39
40
41
42
43
44
45
46
47
 | | // const type from '@/router/deployCode' |  |   |  | const salesLead = (resolve) => require(["@/views/client/salesLead/index"], resolve) // 销售线索 |  | const clientManage = (resolve) => require(["@/views/client/client/index"], resolve) // 客户管理 |  | const contacts = (resolve) => require(["@/views/client/contacts/index"], resolve) // 联系人 |  | const followupRecords = (resolve) => require(["@/views/client/followupRecords/index"], resolve) // 跟进记录 |  |   |  | const appconfig = [ |  |   { |  |     path: "/client/salesLead", |  |     name: "salesLead", |  |     component: salesLead, |  |     meta: { |  |       title: "销售线索", |  |       requireAuth: true |  |     } |  |   }, |  |   { |  |     path: "/client/clientManage", |  |     name: "clientManage", |  |     component: clientManage, |  |     meta: { |  |       title: "客户管理", |  |       requireAuth: true |  |     } |  |   }, |  |   { |  |     path: "/client/contacts", |  |     name: "contacts", |  |     component: contacts, |  |     meta: { |  |       title: "联系人", |  |       requireAuth: true |  |     } |  |   }, |  |   { |  |     path: "/client/followupRecords", |  |     name: "followupRecords", |  |     component: followupRecords, |  |     meta: { |  |       title: "跟进记录", |  |       requireAuth: true |  |     } |  |   } |  | ] |  |   |  | export default appconfig | 
 |