Files
wechatWeb/admin/src/api/subscription/plan_server.js
张成 5b654824b4 1
2026-03-24 17:03:54 +08:00

32 lines
664 B
JavaScript

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();