This commit is contained in:
chc
2022-11-22 17:17:37 +08:00
parent 69c2c4c5c2
commit 830154371a
8 changed files with 442 additions and 237 deletions

View File

@@ -75,3 +75,15 @@ export function applyStatus () {
method: Method.GET
})
}
/**
* 获取自提点信息
* @param storeId
*/
export function getStoreAddress(storeId,params) {
return request({
url: `/buyer/store/address/page/${storeId}`,
method: Method.GET,
params
});
}