This commit is contained in:
张成
2026-03-26 10:55:13 +08:00
parent 7f3e6eb943
commit 656ecb6bc9
10 changed files with 23560 additions and 60 deletions

View File

@@ -19,10 +19,19 @@ class UserServer {
return window.framework.http.get(`/biz_user/detail?id=${encodeURIComponent(id)}`, {});
}
/** 下拉:全部业务用户(与 GET /biz_user/all 对应) */
async all() {
return window.framework.http.get('/biz_user/all', {});
}
async disable(row) {
return window.framework.http.post("/biz_user/disable", row);
}
async enable(row) {
return window.framework.http.post("/biz_user/enable", row);
}
async exportRows(row) {
return window.framework.http.post("/biz_user/export", row);
}