交易:核销

(cherry picked from commit 58b6b1ba57)
This commit is contained in:
owen
2023-10-04 10:51:35 +08:00
committed by shizhong
parent e92709da70
commit cbba91dac5
4 changed files with 114 additions and 23 deletions

View File

@ -139,3 +139,8 @@ export const updateOrderPrice = async (data: any) => {
export const updateOrderAddress = async (data: any) => {
return await request.put({ url: `/trade/order/update-address`, data })
}
// 订单核销
export const pickUpOrder = async (id: number) => {
return await request.put({ url: `/trade/order/pick-up?id=${id}` })
}