pengwei
2025-05-14 268d0ca7801424ba0f846e49e16e75b8df40a626
1
2
3
4
5
6
7
8
9
10
11
12
13
import http from "./http";
 
//获取验证码接口
export const getCodeImg = () => http.get('api/User/getVierificationCode')
 
//用户登录接口
export const login = (data, tenantId) => http.post(`/api/User/login`, data)
 
//用户注册接口
export const register = (data) => http.post('api/Registry/UserRegistry', data)
 
//设置退出的时间
export const setTimeOut = (data) => http.post(`/api/Loginhsy/OutLoginTime?account=${data.account}`)