This commit is contained in:
make
2025-04-06 21:51:01 +08:00
commit 3792acd4c7
408 changed files with 42349 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
import { ResPage, ResultData } from "@/api/interface/index";
import { MiUserList } from "@/api/interface/miUser/list";
import { MI_USER_PORT } from "@/api/config/servicePort";
import http from "@/api";
/**
* @name APP用户列表
*/
export const getList = (params: MiUserList.ReqParams) => {
return http.get<ResPage<MiUserList.ResList>>(MI_USER_PORT + `/list`, params);
};
/**
* @name 设置APP用户
*/
export const saveData = (params: MiUserList.saveParams) => {
return http.post<ResPage<ResultData>>(MI_USER_PORT + `/save`, params);
};
/**
* @name 删除APP用户
*/
export const deleteItem = (params: MiUserList.delParams) => {
return http.post<ResPage<ResultData>>(MI_USER_PORT + `/del`, params);
};