This commit is contained in:
张成
2025-11-21 16:53:49 +08:00
commit 8309808835
286 changed files with 32656 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
import http from "@/libs/http";
class listClServer {
async all(param) {
let res = await http.get("/sys_project/all", param);
return res;
}
async page(row) {
let res = await http.post("/sys_project/page", row);
return res;
}
async exportCsv(row) {
let res = http.fileExport("/sys_project/export", row);
return res;
}
async add(row) {
let res = await http.post("/sys_project/add", row);
return res;
}
async edit(row) {
let res = await http.post("/sys_project/edit", row);
return res;
}
async del(row) {
let res = await http.post("/sys_project/del", row);
return res;
}
}
const listServer = new listClServer();
export default listServer;