This commit is contained in:
张成
2026-03-24 17:03:54 +08:00
parent 268520a0f2
commit 5b654824b4
25 changed files with 799 additions and 111 deletions

View File

@@ -0,0 +1,31 @@
class PlanServer {
async page(row) {
return window.framework.http.post("/biz_plan/page", row);
}
async add(row) {
return window.framework.http.post("/biz_plan/add", row);
}
async edit(row) {
return window.framework.http.post("/biz_plan/edit", row);
}
async del(row) {
return window.framework.http.post("/biz_plan/del", row);
}
async toggle(row) {
return window.framework.http.post("/biz_plan/toggle", row);
}
async all() {
return window.framework.http.get("/biz_plan/all", {});
}
async exportRows(row) {
return window.framework.http.post("/biz_plan/export", row);
}
}
export default new PlanServer();