12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- import { SaveUserType, UserTableAPIType } from "@/types";
- import http from "@/utils/http";
- import { AppDispatch } from "..";
- /**
- * 获取用户管理表格列表
- */
- export const getUserListAPI = (data: UserTableAPIType): any => {
- return async (dispatch: AppDispatch) => {
- const res = await http.post("sys/user/list", data);
- if (res.code === 0) {
- const obj = {
- list: res.data.records,
- total: res.data.total,
- };
- dispatch({ type: "Z1/getList", payload: obj });
- }
- };
- };
- /**
- * 删除用户
- */
- export const userRemoveAPI = (id: number) => {
- return http.get(`sys/user/removes/${id}`);
- };
- /**
- * 重置密码
- */
- export const userPassResetAPI = (id: number) => {
- return http.get(`sys/user/resetPass/${id}`);
- };
- /**
- * 新增/修改用户信息
- */
- export const userSaveAPI = (data: SaveUserType) => {
- return http.post("sys/user/save", data);
- };
- /**
- * 通过id获取角色详情
- */
- export const getUserInfoByIdAPI = (id: number) => {
- return http.get(`sys/user/detail/${id}`);
- };
- /**
- * 角色授权-获取
- */
- export const Z1_APIgetAuthByUserId = (userId: number) => {
- return http.get(`sys/user/perm/getUserTree/${userId}`);
- };
- /**
- * 角色授权-设置
- */
- export const Z1_APIsetAuth = (data: any) => {
- return http.post("sys/user/perm/auth", data);
- };
|