| 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
 | | import request from "@/common/untils/request.js" |  |   |  | // 跟进记录列表 |  | export function getFollowRecordList(data) { |  |   return request({ |  |     url: "/api/followRecord/list", |  |     method: "post", |  |     data |  |   }) |  | } |  | // 添加跟进记录 |  | export function getAddFollowRecord(data) { |  |   return request({ |  |     url: "/api/followRecord/add", |  |     method: "post", |  |     data |  |   }) |  | } |  | // 删除跟进记录 |  | export function getDeleteFollowRecord(data) { |  |   return request({ |  |     url: "/api/followRecord/delete", |  |     method: "delete", |  |     data |  |   }) |  | } |  | // 更新跟进记录 |  | export function getUpdateFollowRecord(data) { |  |   return request({ |  |     url: "/api/followRecord/update", |  |     method: "put", |  |     data |  |   }) |  | } |  |   |  | // 联系方式列表 |  | export function getContactInfoList() { |  |   return request({ |  |     url: "/api/contactInformation/list", |  |     method: "get" |  |   }) |  | } | 
 |