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,19 @@
class TokenServer {
async page(row) {
return window.framework.http.post("/biz_token/page", row);
}
async create(row) {
return window.framework.http.post("/biz_token/create", row);
}
async revoke(row) {
return window.framework.http.post("/biz_token/revoke", row);
}
async exportRows(row) {
return window.framework.http.post("/biz_token/export", row);
}
}
export default new TokenServer();