yxh
yxh
2025-05-23 8022f7036945b75f82f2dfc43055623f81ed98f6
src/api/login.js
@@ -1,12 +1,13 @@
import request from '@/utils/request'
// 登录方法
export function login(username, password, code, uuid) {
export function login(username, password, code, uuid,authCode) {
  const data = {
    username,
    password,
    code,
    uuid
    uuid,
    authCode
  }
  return request({
    url: '/login',
@@ -50,4 +51,4 @@
    method: 'get',
    timeout: 20000
  })
}
}