restructure/src/api/login/index.js

16 lines
275 B
JavaScript
Raw Normal View History

2022-05-18 17:35:46 +08:00
import { mockAxios as request } from '@/utils/http'
export function userLogin(data = {}) {
return request({
url: '/login/login',
method: 'post',
data
})
}
export function userCaptcha() {
return request({
url: '/login/captcha',
method: 'get'
})
}