登录/验证码请求headers不设置token

This commit is contained in:
RuoYi 2021-11-01 13:29:27 +08:00
parent 2fe919b6ce
commit 3ae5ec92a5
1 changed files with 6 additions and 0 deletions

View File

@ -10,6 +10,9 @@ export function login(username, password, code, uuid) {
} }
return request({ return request({
url: '/login', url: '/login',
headers: {
isToken: false
},
method: 'post', method: 'post',
data: data data: data
}) })
@ -47,6 +50,9 @@ export function logout() {
export function getCodeImg() { export function getCodeImg() {
return request({ return request({
url: '/captchaImage', url: '/captchaImage',
headers: {
isToken: false
},
method: 'get', method: 'get',
timeout: 20000 timeout: 20000
}) })