1
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user