调试接口

This commit is contained in:
wangxiaowei
2025-12-23 03:30:22 +08:00
parent 90e9448b68
commit 3af440cd21
17 changed files with 149 additions and 82 deletions

View File

@ -177,4 +177,11 @@ export function getUserBillDetails(id: number) {
*/
export function transferOrder(order_id: number) {
return http.Post('/api/order/transferOrder', {order_id})
}
/**
* 用户一件授权手机号
*/
export function getMobileByMnp(code: string) {
return http.Post('/api/user/getMobileByMnp', {code})
}