下单详情

This commit is contained in:
wwz
2025-03-06 18:48:38 +08:00
parent 56799f41f6
commit 70edc6756d
20 changed files with 4477 additions and 319 deletions

View File

@@ -27,11 +27,20 @@ export const APIputuserorder = (data) => {
})
}
//订单列表
export const orderhistoryOrder = (data) => {
//历史订单(多次下单使用)
export const APIhistoryOrder = (data) => {
return request({
url: url + '/user/order/historyOrder',
method: 'get',
data: data
})
}
//订单详情
export const APIgetOrderById = (data) => {
return request({
url: url + '/user/order/getOrderById',
method: 'get',
data: data
})
}