高德商户

This commit is contained in:
zhonghua.li
2026-05-03 10:26:52 +08:00
parent 8fd3aa00e2
commit 69f6cf78ac
3 changed files with 212 additions and 16 deletions

View File

@@ -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) {