| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- import { Login } from "@/api/interface/index";
- // import { PORT1 } from "@/api/config/servicePort";
- // import authMenuList from "@/assets/json/authMenuList.json";
- import authButtonList from "@/assets/json/authButtonList.json";
- import http from "@/api";
- import qs from "qs";
-
- /**
- * @name 登录模块
- */
- // 用户登录
- // export const loginApi = (params: Login.ReqLoginForm) => {
- // return http.post<Login.ResLogin>(`/login`, params, { loading: false }); // 正常 post json 请求 ==> application/json
- // // return http.post<Login.ResLogin>(PORT1 + `/login`, params, { loading: false }); // 控制当前请求不显示 loading
- // // return http.post<Login.ResLogin>(PORT1 + `/login`, {}, { params }); // post 请求携带 query 参数 ==> ?username=admin&password=123456
- // // return http.post<Login.ResLogin>(PORT1 + `/login`, qs.stringify(params)); // post 请求携带表单参数 ==> application/x-www-form-urlencoded
- // // return http.get<Login.ResLogin>(PORT1 + `/login?${qs.stringify(params, { arrayFormat: "repeat" })}`); // get 请求可以携带数组等复杂参数
- // };
- export const loginApi = (params: Login.ReqLoginForm) => {
- return http.post<Login.ResLogin>(`/platform/login`, qs.stringify(params), { loading: false }); // 正常 post json 请求 ==> application/json
- };
- // 登录
- export const userloginApi = (params: Login.ReqLoginForm) => {
- return http.post<Login.ResLogin>(`/saas/login`, qs.stringify(params), { loading: false }); // 正常 post json 请求 ==> application/json
- };
- // 重置密码
- export const newloginApi = (params: {}) => {
- return http.post(`/platform/user/resetPwd`, qs.stringify(params), { loading: false }); // 正常 post json 请求 ==> application/json
- };
- // 获取菜单列表
- export const getAuthMenuListApi = () => {
- return http.get<Menu.MenuOptions[]>(`/platform/menu/linke/Menu`, {}, { loading: false });
- // 如果想让菜单变为本地数据,注释上一行代码,并引入本地 authMenuList.json 数据
- // return authMenuList;
- };
-
- // 获取按钮权限
- export const getAuthButtonListApi = () => {
- // return http.get<Login.ResAuthButtons>(PORT1 + `/auth/buttons`, {}, { loading: false });
- // 如果想让按钮权限变为本地数据,注释上一行代码,并引入本地 authButtonList.json 数据
- return authButtonList;
- };
-
- // 用户退出登录
- export const logoutApi = () => {
- return http.post(`/logout`);
- };
|