Files
admin_core/demo/src/api/system/userServer.js
张成 0b78af46cd 1
2025-10-09 23:26:40 +08:00

41 lines
892 B
JavaScript

class UserServer {
async login(row) {
let res = await window.framework.http.post("/sys_user/login", row);
return res;
}
async all() {
let res = await window.framework.http.get("/sys_user/index", {});
return res;
}
async exportCsv(row) {
let res = window.framework.http.fileExport("/sys_user/export", row);
return res;
}
async authorityMenus() {
let res = await window.framework.http.post("/sys_user/authorityMenus", {});
return res;
}
async add(row) {
let res = await window.framework.http.post("/sys_user/add", row);
return res;
}
async edit(row) {
let res = await window.framework.http.post("/sys_user/edit", row);
return res;
}
async del(row) {
let res = await window.framework.http.post("/sys_user/del", row);
return res;
}
}
const userServer = new UserServer();
export default userServer;