12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- import request from '@/config/axios'
- import { getRefreshToken } from '@/utils/auth'
- import type { UserLoginVO } from './types'
- export interface CodeImgResult {
- captchaOnOff: boolean
- img: string
- uuid: string
- }
- export interface SmsCodeVO {
- mobile: string
- scene: number
- }
- export interface SmsLoginVO {
- mobile: string
- code: string
- }
- // 登录
- export const loginApi = (data: UserLoginVO) => {
- return request.post({ url: '/system/auth/login', data })
- }
- // 刷新访问令牌
- export const refreshToken = () => {
- return request.post({ url: '/system/auth/refresh-token?refreshToken=' + getRefreshToken() })
- }
- // 使用租户名,获得租户编号
- export const getTenantIdByNameApi = (name: string) => {
- return request.get({ url: '/system/tenant/get-id-by-name?name=' + name })
- }
- // 登出
- export const loginOutApi = () => {
- return request.delete({ url: '/system/auth/logout' })
- }
- // 获取用户权限信息
- export const getInfoApi = () => {
- return request.get({ url: '/system/auth/get-permission-info' })
- }
- // 路由
- export const getAsyncRoutesApi = () => {
- return request.get({ url: '/system/auth/list-menus' })
- }
- //获取登录验证码
- export const sendSmsCodeApi = (data: SmsCodeVO) => {
- return request.post({ url: '/system/auth/send-sms-code', data })
- }
- // 短信验证码登录
- export const smsLoginApi = (data: SmsLoginVO) => {
- return request.post({ url: '/system/auth/sms-login', data })
- }
- // 社交授权的跳转
- export const socialAuthRedirectApi = (type: number, redirectUri: string) => {
- return request.get({
- url: '/system/auth/social-auth-redirect?type=' + type + '&redirectUri=' + redirectUri
- })
- }
- // 获取验证图片 以及token
- export const getCodeApi = (data) => {
- return request.postOriginal({ url: 'system/captcha/get', data })
- }
- // 滑动或者点选验证
- export const reqCheckApi = (data) => {
- return request.postOriginal({ url: 'system/captcha/check', data })
- }
|