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,11 +1,11 @@
import http from "@/utils/http";
class ParamSetupServer {
async getAll() {
return await window.framework.httpget("/sys_parameter/index", {});
return await window.framework.http.get("/sys_parameter/index", {});
}
async getOne(key) {
return await window.framework.httpget("/sys_parameter/key", { key });
return await window.framework.http.get("/sys_parameter/key", { key });
}
async add(row) {