交易:核销

This commit is contained in:
owen
2023-10-04 10:51:35 +08:00
parent 7c491ff62a
commit 58b6b1ba57
4 changed files with 115 additions and 24 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}` })
}