feat: 系统用户部分功能完成

This commit is contained in:
duan
2025-03-19 16:29:32 +08:00
parent eb93ad889a
commit bc75b5f5dd
23 changed files with 427 additions and 181 deletions

View File

@@ -18,9 +18,8 @@ const API = {
},
delete(data: any) {
return request({
url: `${baseURL}`,
url: `${baseURL}?id=${data}`,
method: "delete",
data: data,
});
},
add(data: any) {
@@ -42,7 +41,8 @@ const API = {
return request({
url: `${baseURL}/download`,
method: "get",
params
params,
responseType: "blob",
});
},
pwd(data: any) {
@@ -52,6 +52,7 @@ const API = {
data
});
}
,
}
export default API;