gaoluyang
2025-03-28 69456dc6a27e0756adfcc41896f4cb7f3cecc0a5
src/api/login.js
@@ -19,6 +19,27 @@
  })
}
// 获取单点登录地址
export function getSsoAuthUrl() {
  return request({
    url: '/getSsoAuthUrl',
    method: 'get'
  })
}
// 单点登录
export function LoginBySSO(accessToken) {
  return request({
    url: '/loginBySSO',
    headers: {
      isToken: false,
      repeatSubmit: false
    },
    method: 'post',
    params: accessToken
  })
}
// 注册方法
export function register(data) {
  return request({