登录接口

This commit is contained in:
2022-12-15 17:42:04 +08:00
parent cae098db2b
commit 40bca30800

View File

@@ -4,7 +4,7 @@ import {post} from '@config/http.js'
export const test = () => post('test/1', {})
// 手持登录
export const loginApi = (user, password) => post('api/pda/login', {
export const loginApi = (user, password) => post('mobile/auth/login', {
username: user,
password: password
})