import { request, requestForMock } from "../service"; import { env } from "/@/utils/util.env"; export interface RegisterReq { username: string; password: string; confirmPassword: string; } /** * @description: Login interface parameters */ export interface LoginReq { username: string; password: string; } export interface UserInfoRes { id: string | number; username: string; nickName: string; roles: number[]; } export interface LoginRes { token: string; expire: number; } export async function register(user: RegisterReq): Promise { return await request({ url: "/register", method: "post", data: user }); } export async function login(data: LoginReq): Promise { if (env.PM_ENABLED === "false") { //没有开启权限模块,模拟登录 return await requestForMock({ url: "/login", method: "post", data }); } //如果开启了登录与权限模块,则真实登录 return await request({ url: "/login", method: "post", data }); } export async function mine(): Promise { if (env.PM_ENABLED === "false") { //没有开启权限模块,模拟登录 return await requestForMock({ url: "/sys/authority/user/mine", method: "post" }); } return await request({ url: "/mine/info", method: "post" }); } export async function getPlusInfo() { return await request({ url: "/mine/plusInfo", method: "post" }); }