订单列表:列表重构: 完善订单发货、修改地址、订单调价、订单备注

(cherry picked from commit be143ea21b)
This commit is contained in:
puhui999
2023-08-22 17:36:47 +08:00
committed by shizhong
parent 70b1161ec1
commit 99ef6f83ba
9 changed files with 263 additions and 77 deletions

View File

@ -109,3 +109,13 @@ export const delivery = async (data: DeliveryVO) => {
export const remark = async (data) => {
return await request.post({ url: `/trade/order/remark`, data })
}
// 订单调价
export const adjustPrice = async (data) => {
return await request.post({ url: `/trade/order/adjust-price`, data })
}
// 修改订单地址
export const adjustAddress = async (data) => {
return await request.post({ url: `/trade/order/adjust-address`, data })
}