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

This commit is contained in:
puhui999
2023-08-22 17:36:47 +08:00
parent ebcbe63d9b
commit be143ea21b
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 })
}