【新增】自提门店选择

This commit is contained in:
puhui999
2024-08-05 18:00:11 +08:00
parent bd07762a10
commit b98f848be1
6 changed files with 538 additions and 8 deletions
+8
View File
@@ -7,6 +7,14 @@ const DeliveryApi = {
url: `/trade/delivery/express/list`,
method: 'get',
});
},
// 获得自提门店列表
getDeliveryPickUpStoreList: (params) => {
return request({
url: `/trade/delivery/pick-up-store/list`,
method: 'GET',
params
});
}
};