高德商户
This commit is contained in:
@@ -150,6 +150,26 @@ export function exportCustomerFlow(params) {
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 高德周边商家检索(地理编码 + place/around)
|
||||
* @param {{ CITY: string, ADDRESS: string, RADIUS: number, MAX_PAGE: number, maxRecordsOfpage: number }} params
|
||||
*/
|
||||
export function searchNearbyMerchants(params) {
|
||||
return request({
|
||||
url: '/customerManagement/searchNearbyMerchants',
|
||||
method: 'get',
|
||||
params: {
|
||||
CITY: params.CITY,
|
||||
ADDRESS: params.ADDRESS,
|
||||
RADIUS: params.RADIUS,
|
||||
MAX_PAGE: params.MAX_PAGE,
|
||||
maxRecordsOfpage: params.maxRecordsOfpage
|
||||
},
|
||||
timeout: 120000,
|
||||
skipResponseNormalize: true
|
||||
})
|
||||
}
|
||||
|
||||
// 沟通记录相关API
|
||||
// 分页查询沟通记录
|
||||
export function getCommunicationRecordPage(params) {
|
||||
|
||||
Reference in New Issue
Block a user