zrlibs
2025-03-17 7ae689ef9495232756023f0177683e80615e13aa
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
    })
}