zrlibs
2025-03-07 7827a1fdc45c54e125f8263d5b2b17f0be2301f4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import HttpRequest from '@/libs/http'
const httpRequest = new HttpRequest(window.apiRoot)
 
/**
 * 登录
 * @param {*} param0 
 * @returns 
 */
export const login = ({ user_login,user_psw }) => {
    return httpRequest.post('api/user/ace/verifypassword', {
        user_login,
        user_psw
    })
}