This commit is contained in:
张成
2025-10-09 18:21:05 +08:00
parent ba61c9e45d
commit 6be5f7ed4f
49 changed files with 97 additions and 80 deletions

View File

@@ -1,12 +1,12 @@
import http from "@/utils/http";
class SysModuleServer {
async all() {
let res = await window.framework.httpget("/sys_menu/all", {});
let res = await window.framework.http.get("/sys_menu/all", {});
return res;
}
async list(row) {
let res = await window.framework.httpget("/sys_menu/all", row);
let res = await window.framework.http.get("/sys_menu/all", row);
return res;
}