|
|
@ -113,10 +113,14 @@ export function delBySids(params) { |
|
|
|
} |
|
|
|
|
|
|
|
// 模糊搜索客户
|
|
|
|
export function customerName() { |
|
|
|
export function customerName(data) { |
|
|
|
return request({ |
|
|
|
url: '/crm/v1/crmcustomer/cusList', |
|
|
|
method: 'post' |
|
|
|
url: '/crm/v1/crmcustomertemp/listAll', |
|
|
|
method: 'post', |
|
|
|
data: data, |
|
|
|
headers: { |
|
|
|
'Content-Type': 'application/json' |
|
|
|
} |
|
|
|
}) |
|
|
|
} |
|
|
|
|
|
|
|