12345678910111213141516171819202122232425262728293031323334353637383940 |
- import request from '@/utils/request'
- // 登录方法
- export function login(username, password, code, uuid) {
- const data = {
- username,
- password,
- code,
- uuid
- }
- return request({
- url: '/login',
- method: 'post',
- data: data
- })
- }
- // 获取用户详细信息
- export function getInfo() {
- return request({
- url: '/get-permission-info',
- method: 'get'
- })
- }
- // 退出方法
- export function logout() {
- return request({
- url: '/logout',
- method: 'post'
- })
- }
- // 获取验证码
- export function getCodeImg() {
- return request({
- url: '/system/captcha/get-image',
- method: 'get'
- })
- }
|