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