调试接口

This commit is contained in:
wangxiaowei
2025-12-22 04:48:05 +08:00
parent 24b7f61c98
commit ca0d16cf05
41 changed files with 750 additions and 345 deletions

View File

@ -171,3 +171,10 @@ export function getUserMember() {
export function getUserBillDetails(id: number) {
return http.Post<any>('/api/user/accountDetails', {id})
}
/**
* 转让订单
*/
export function transferOrder(order_id: number) {
return http.Post('/api/order/transferOrder', {order_id})
}