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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import request from '@/utils/request'
// 创建客户联系人
export function createCustomerContacts(data) {
return request({
url: '/ecw/customer-contacts/create',
method: 'post',
data: data
})
}
// 更新客户联系人
export function updateCustomerContacts(data) {
return request({
url: '/ecw/customer-contacts/update',
method: 'put',
data: data
})
}
// 删除客户联系人
export function deleteCustomerContacts(id) {
return request({
url: '/ecw/customer-contacts/delete?id=' + id,
method: 'delete'
})
}
// 获得客户联系人
export function getCustomerContacts(id) {
return request({
url: '/ecw/customer-contacts/get?id=' + id,
method: 'get'
})
}
// 获得客户联系人列表
export function getCustomerContactsList() {
return request({
url: '/ecw/customer-contacts/list',
method: 'get'
})
}
// 获得客户联系人分页
export function getCustomerContactsPage(query) {
return request({
url: '/ecw/customer-contacts/page',
method: 'get',
params: query
})
}
// 获得客户联系人下拉列表
export function getCustomerContactsSelect(query) {
return request({
url: '/ecw/customer-contacts/select',
method: 'get',
params: query
})
}
// 导出客户联系人 Excel
export function exportCustomerContactsExcel(query) {
return request({
url: '/ecw/customer-contacts/export-excel',
method: 'get',
params: query,
responseType: 'blob'
})
}
// 根据客户ID获得联系人列表
export function getCustomerContactsListByCustomer(query) {
if(query.customerId){
return request({
url: '/ecw/customer-contacts/list-by-customer',
method: 'get',
params: query
})
}else {
return Promise.resolve()
}
}