调试接口

This commit is contained in:
wangxiaowei
2025-12-23 17:55:14 +08:00
parent 3af440cd21
commit 716160c113
13 changed files with 133 additions and 50 deletions

View File

@ -184,4 +184,11 @@ export function transferOrder(order_id: number) {
*/
export function getMobileByMnp(code: string) {
return http.Post('/api/user/getMobileByMnp', {code})
}
/**
* 用户开门
*/
export function openLock(order_id: number, type: number) {
return http.Post('/api/Common/ce_ttlock', {order_id, type})
}