提b2c部分基础迁移代码

This commit is contained in:
Yer11214
2024-10-02 20:41:30 +08:00
parent c970309802
commit c03778676c
26 changed files with 4395 additions and 462 deletions

View File

@@ -160,3 +160,8 @@ export const refundLog = (params) => {
export const storeAddress = (sn) => {
return getRequest(`/order/afterSale/getStoreAfterSaleAddress/${sn}`)
}
// 订单核验
export const orderTake = (sn, verificationCode) => {
return putRequest(`/order/order/take/${sn}/${verificationCode}`);
};