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

@@ -6,12 +6,12 @@ class ModelServer {
}
async all() {
let res = await window.framework.httpget("/sys_model/all", {});
let res = await window.framework.http.get("/sys_model/all", {});
return res;
}
async detail(row) {
let res = await window.framework.httpget("/sys_model/detail", row);
let res = await window.framework.http.get("/sys_model/detail", row);
return res;
}