第一次提交

main
zhoulianbo 1 year ago
commit e758aeb17a

BIN
.DS_Store vendored

Binary file not shown.

@ -0,0 +1,60 @@
{
"compilerOptions": {
/* Basic Options */
"target": "es2015", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017','ES2018' or 'ESNEXT'. */
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
// "lib": [], /* Specify library files to be included in the compilation. */
// "allowJs": true, /* Allow javascript files to be compiled. */
// "checkJs": true, /* Report errors in .js files. */
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
"declaration": true, /* Generates corresponding '.d.ts' file. */
// "declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
// "sourceMap": true, /* Generates corresponding '.map' file. */
// "outFile": "./", /* Concatenate and emit output to single file. */
// "outDir": "./", /* Redirect output structure to the directory. */
// "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
// "composite": true, /* Enable project compilation */
// "removeComments": true, /* Do not emit comments to output. */
// "noEmit": true, /* Do not emit outputs. */
// "importHelpers": true, /* Import emit helpers from 'tslib'. */
// "downlevelIteration": true, /* Provide full support for iterables in 'for-of', spread, and destructuring when targeting 'ES5' or 'ES3'. */
// "isolatedModules": true, /* Transpile each file as a separate module (similar to 'ts.transpileModule'). */
/* Strict Type-Checking Options */
"strict": true, /* Enable all strict type-checking options. */
// "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
// "strictNullChecks": true, /* Enable strict null checks. */
// "strictFunctionTypes": true, /* Enable strict checking of function types. */
// "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */
// "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */
// "noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */
// "alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
/* Additional Checks */
// "noUnusedLocals": true, /* Report errors on unused locals. */
// "noUnusedParameters": true, /* Report errors on unused parameters. */
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
/* Module Resolution Options */
// "moduleResolution": "node", /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
// "baseUrl": "./", /* Base directory to resolve non-absolute module names. */
// "paths": {}, /* A series of entries which re-map imports to lookup locations relative to the 'baseUrl'. */
// "rootDirs": [], /* List of root folders whose combined content represents the structure of the project at runtime. */
// "typeRoots": [], /* List of folders to include type definitions from. */
// "types": [], /* Type declaration files to be included in compilation. */
// "allowSyntheticDefaultImports": true, /* Allow default imports from modules with no default export. This does not affect code emit, just typechecking. */
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
// "preserveSymlinks": true, /* Do not resolve the real path of symlinks. */
/* Source Map Options */
// "sourceRoot": "", /* Specify the location where debugger should locate TypeScript files instead of source locations. */
// "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
// "inlineSourceMap": true, /* Emit a single file with source maps instead of having a separate file. */
// "inlineSources": true, /* Emit the source alongside the sourcemaps within a single file; requires '--inlineSourceMap' or '--sourceMap' to be set. */
/* Experimental Options */
"experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */
}
}

@ -0,0 +1,14 @@
declare type BeginLoading = () => void;
declare type EndLoading = () => void;
declare type HttpFailed = (ok: boolean, status: number, statusText: string) => void;
declare type HttpErr = (errCode: number, errMsg: string) => void;
export declare class GlobalUnit {
static JWT_STR: string;
static APP_NAME: string;
static BASE_URL: string;
static BeginLoading?: BeginLoading;
static EndLoading?: EndLoading;
static HttpFailed?: HttpFailed;
static HttpErr?: HttpErr;
}
export {};

@ -0,0 +1,5 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
class GlobalUnit {
}
exports.GlobalUnit = GlobalUnit;

386
dist/index.d.ts vendored

@ -0,0 +1,386 @@
import { GlobalUnit } from './globalunit';
import { isWeAPP } from './utils';
export { GlobalUnit, isWeAPP };
export declare class GetRbacCheckrolecodeResponse {
errcode: number;
errmsg: string;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class GetRbacDelroleResponse {
errcode: number;
errmsg: string;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class GetRbacDelrouteResponse {
errcode: number;
errmsg: string;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class GetRbacDeluserResponse {
errcode: number;
errmsg: string;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class GetRbacGetcodeResponse {
errcode: number;
errmsg: string;
data?: RbacGetCodeDataObject;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class RbacGetCodeDataObject {
code: string;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class GetRbacGetrolebyuseridResponse {
errcode: number;
errmsg: string;
data?: RbacGetRoleDataObject;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class RbacGetRoleDataObject {
role?: RbacGetRoleObject;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class RbacGetRoleObject {
id: string;
role_code: string;
role_name: string;
description: string;
created_at: string;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class GetRbacGetroutelistResponse {
errcode: number;
errmsg: string;
data?: RbacGetRouteListDataObject;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class RbacGetRouteListDataObject {
routes?: RbacGetRouteListRouteList[];
constructor(jsonObj: Object);
toMap(): any;
}
export declare class RbacGetRouteListRouteList {
id: string;
parent_id: string;
menu_type: number;
name: string;
title: string;
icon: string;
sort: number;
component: string;
redirect: string;
perms: string;
perms_type: number;
btn_status: number;
path: string;
hideInBread: number;
hideInMenu: number;
notCache: number;
isMmin: number;
children?: RbacGetRouteListChildrenList[];
constructor(jsonObj: Object);
toMap(): any;
}
export declare class RbacGetRouteListChildrenList {
id: string;
parent_id: string;
menu_type: number;
name: string;
title: string;
icon: string;
sort: number;
component: string;
redirect: string;
perms: string;
perms_type: number;
path: string;
btn_status: number;
hideInBread: number;
hideInMenu: number;
notCache: number;
isMmin: number;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class GetRbacGetroutesbyroleidResponse {
errcode: number;
errmsg: string;
data?: RbacGetRoleRoutesDataObject;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class RbacGetRoleRoutesDataObject {
routes?: RbacGetRoleRoutesRouteList[];
constructor(jsonObj: Object);
toMap(): any;
}
export declare class RbacGetRoleRoutesRouteList {
id: string;
parent_id: string;
title: string;
checked: number;
children?: RbacGetRoleRoutesChildrenList[];
constructor(jsonObj: Object);
toMap(): any;
}
export declare class RbacGetRoleRoutesChildrenList {
id: string;
parent_id: string;
title: string;
checked: number;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class GetRbacGetuserpermissionResponse {
errcode: number;
errmsg: string;
data?: RbacPermissionDataObject;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class RbacPermissionDataObject {
routes?: RbacPermissionRouteList[];
constructor(jsonObj: Object);
toMap(): any;
}
export declare class RbacPermissionRouteList {
id: string;
parent_id: string;
menu_type: number;
name: string;
title: string;
icon: string;
sort: number;
component: string;
redirect: string;
perms: string;
perms_type: number;
btn_status: number;
path: string;
is_choose: string;
meta?: RbacPermissionRouteMetaObj;
children?: RbacPermissionRouteChildrenList[];
constructor(jsonObj: Object);
toMap(): any;
}
export declare class RbacPermissionRouteMetaObj {
title: string;
icon: string;
hideInBread?: Bool;
hideInMenu?: Bool;
notCache?: Bool;
isMmin?: Bool;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class Bool {
constructor(jsonObj: Object);
toMap(): any;
}
export declare class RbacPermissionRouteChildrenList {
id: string;
parent_id: string;
menu_type: number;
name: string;
title: string;
icon: string;
sort: number;
component: string;
redirect: string;
perms: string;
perms_type: number;
path: string;
is_choose: string;
btn_status: number;
meta?: RbacPermissionRouteChildrenMetaObj;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class RbacPermissionRouteChildrenMetaObj {
title: string;
icon: string;
hideInBread?: Bool;
hideInMenu?: Bool;
notCache?: Bool;
isMmin?: Bool;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class GetRbacGetusersbyroleidResponse {
errcode: number;
errmsg: string;
data?: RbacUserListDataObject;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class RbacUserListDataObject {
count: number;
users?: RbacUserListDataUserList[];
constructor(jsonObj: Object);
toMap(): any;
}
export declare class RbacUserListDataUserList {
id: string;
username: string;
avatar: string;
realname: string;
disable: string;
root: number;
created_at: string;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class PostRbacCreateroleResponse {
errcode: number;
errmsg: string;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class PostRbacCreaterouteResponse {
errcode: number;
errmsg: string;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class PostRbacDelrolebindResponse {
errcode: number;
errmsg: string;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class PostRbacGetrolesResponse {
errcode: number;
errmsg: string;
data?: RbacGetRoleListDataObject;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class RbacGetRoleListDataObject {
count: number;
roles?: RbacGetRoleList[];
constructor(jsonObj: Object);
toMap(): any;
}
export declare class RbacGetRoleList {
id: string;
role_code: string;
role_name: string;
description: string;
created_at: string;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class PostRbacGetuserlistResponse {
errcode: number;
errmsg: string;
data?: RbacUserListDataObject;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class PostRbacLoginResponse {
errcode: number;
errmsg: string;
data?: RbacLoginDataObject;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class RbacLoginDataObject {
user?: RbacLoginUserObject;
jwt: string;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class RbacLoginUserObject {
id: string;
username: string;
avatar: string;
realname: string;
disable: string;
created_at: string;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class PostRbacRegisterResponse {
errcode: number;
errmsg: string;
data?: RbacCreateUserDataObject;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class RbacCreateUserDataObject {
id: string;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class PostRbacRolebindrouteResponse {
errcode: number;
errmsg: string;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class PostRbacRolebinduserResponse {
errcode: number;
errmsg: string;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class PostRbacUpdateroleResponse {
errcode: number;
errmsg: string;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class PostRbacUpdaterouteResponse {
errcode: number;
errmsg: string;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class PostRbacUpdateuserResponse {
errcode: number;
errmsg: string;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class PostRbacUserbindroleResponse {
errcode: number;
errmsg: string;
constructor(jsonObj: Object);
toMap(): any;
}
export declare class Rbac {
static GetRbacCheckrolecode(role_code: string, callback?: (response: GetRbacCheckrolecodeResponse) => void, loading?: boolean, isshow?: boolean): void;
static GetRbacDelrole(role_id: string, callback?: (response: GetRbacDelroleResponse) => void, loading?: boolean, isshow?: boolean): void;
static GetRbacDelroute(route_id: string, callback?: (response: GetRbacDelrouteResponse) => void, loading?: boolean, isshow?: boolean): void;
static GetRbacDeluser(user_id: string, callback?: (response: GetRbacDeluserResponse) => void, loading?: boolean, isshow?: boolean): void;
static GetRbacGetcode(_t: string, callback?: (response: GetRbacGetcodeResponse) => void, loading?: boolean, isshow?: boolean): void;
static GetRbacGetrolebyuserid(user_id: string, callback?: (response: GetRbacGetrolebyuseridResponse) => void, loading?: boolean, isshow?: boolean): void;
static GetRbacGetroutelist(callback?: (response: GetRbacGetroutelistResponse) => void, loading?: boolean, isshow?: boolean): void;
static GetRbacGetroutesbyroleid(role_id: string, callback?: (response: GetRbacGetroutesbyroleidResponse) => void, loading?: boolean, isshow?: boolean): void;
static GetRbacGetuserpermission(callback?: (response: GetRbacGetuserpermissionResponse) => void, loading?: boolean, isshow?: boolean): void;
static GetRbacGetusersbyroleid(role_id: string, callback?: (response: GetRbacGetusersbyroleidResponse) => void, loading?: boolean, isshow?: boolean): void;
static PostRbacCreaterole(description: string | undefined, role_code: string, role_name: string, callback?: (response: PostRbacCreateroleResponse) => void, loading?: boolean, isshow?: boolean): void;
static PostRbacCreateroute(btn_status: number, component: string, hideInBread: number, hideInMenu: number, icon: string, isMmin: number, ment_type: number, name: string, notCache: number, parent_id: string, path: string, perms: string, perms_type: number, redirect: string, sort: number, title: string, callback?: (response: PostRbacCreaterouteResponse) => void, loading?: boolean, isshow?: boolean): void;
static PostRbacDelrolebind(role_id: string, user_id: string, callback?: (response: PostRbacDelrolebindResponse) => void, loading?: boolean, isshow?: boolean): void;
static PostRbacGetroles(limit?: number, page?: number, role_code?: string, role_name?: string, callback?: (response: PostRbacGetrolesResponse) => void, loading?: boolean, isshow?: boolean): void;
static PostRbacGetuserlist(limit?: number, page?: number, realname?: string, username?: string, callback?: (response: PostRbacGetuserlistResponse) => void, loading?: boolean, isshow?: boolean): void;
static PostRbacLogin(_t: string, code: string, password: string, username: string, callback?: (response: PostRbacLoginResponse) => void, loading?: boolean, isshow?: boolean): void;
static PostRbacRegister(avatar: string, password: string, realname: string, root: number, username: string, callback?: (response: PostRbacRegisterResponse) => void, loading?: boolean, isshow?: boolean): void;
static PostRbacRolebindroute(role_id: string, routes: string[], callback?: (response: PostRbacRolebindrouteResponse) => void, loading?: boolean, isshow?: boolean): void;
static PostRbacRolebinduser(role_id: string, users: string[], callback?: (response: PostRbacRolebinduserResponse) => void, loading?: boolean, isshow?: boolean): void;
static PostRbacUpdaterole(description: string | undefined, role_id: string, role_name: string, callback?: (response: PostRbacUpdateroleResponse) => void, loading?: boolean, isshow?: boolean): void;
static PostRbacUpdateroute(btn_status: number, component: string, hideInBread: number, hideInMenu: number, icon: string, isMmin: number, ment_type: number, name: string, notCache: number, parent_id: string, path: string, perms: string, perms_type: number, redirect: string, route_id: string, sort: number, title: string, callback?: (response: PostRbacUpdaterouteResponse) => void, loading?: boolean, isshow?: boolean): void;
static PostRbacUpdateuser(avatar: string, realname: string, root: number, user_id: string, callback?: (response: PostRbacUpdateuserResponse) => void, loading?: boolean, isshow?: boolean): void;
static PostRbacUserbindrole(role_id: string, user_id: string, callback?: (response: PostRbacUserbindroleResponse) => void, loading?: boolean, isshow?: boolean): void;
}

1727
dist/index.js vendored

File diff suppressed because it is too large Load Diff

23
dist/requests.d.ts vendored

@ -0,0 +1,23 @@
export interface RequestOptions {
ignoreCache?: boolean;
headers?: {
[key: string]: string;
};
timeout?: number;
}
export declare const DEFAULT_REQUEST_OPTIONS: {
ignoreCache: boolean;
headers: {
Accept: string;
};
timeout: number;
};
export interface RequestResult {
ok: boolean;
status: number;
statusText: string;
data: string;
json: <T>() => T;
headers: string;
}
export declare function request(method: 'get' | 'post', url: string, queryParams?: any, body?: any, options?: RequestOptions): Promise<RequestResult>;

73
dist/requests.js vendored

@ -0,0 +1,73 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.DEFAULT_REQUEST_OPTIONS = {
ignoreCache: false,
headers: {
Accept: 'application/json, text/javascript, text/plain',
},
timeout: 5000,
};
function queryParams(params = {}) {
return Object.keys(params)
.map((k) => encodeURIComponent(k) + '=' + encodeURIComponent(params[k]))
.join('&');
}
function withQuery(url, params = {}) {
const queryString = queryParams(params);
return queryString
? url + (url.indexOf('?') === -1 ? '?' : '&') + queryString
: url;
}
function parseXHRResult(xhr) {
return {
ok: xhr.status >= 200 && xhr.status < 300,
status: xhr.status,
statusText: xhr.statusText,
headers: xhr.getAllResponseHeaders(),
data: xhr.responseText,
json: () => JSON.parse(xhr.responseText),
};
}
function errorResponse(xhr, message = null) {
return {
ok: false,
status: xhr.status,
statusText: xhr.statusText,
headers: xhr.getAllResponseHeaders(),
data: message || xhr.statusText,
json: () => JSON.parse(message || xhr.statusText),
};
}
function request(method, url, queryParams = {}, body = null, options = exports.DEFAULT_REQUEST_OPTIONS) {
const ignoreCache = options.ignoreCache || exports.DEFAULT_REQUEST_OPTIONS.ignoreCache;
const headers = options.headers || exports.DEFAULT_REQUEST_OPTIONS.headers;
const timeout = options.timeout || exports.DEFAULT_REQUEST_OPTIONS.timeout;
return new Promise((resolve, reject) => {
let xhr = new XMLHttpRequest();
xhr.open(method, withQuery(url, queryParams));
if (headers) {
Object.keys(headers).forEach((key) => xhr.setRequestHeader(key, headers[key]));
}
if (ignoreCache) {
xhr.setRequestHeader('Cache-Control', 'no-cache');
}
xhr.timeout = timeout;
xhr.onload = () => {
resolve(parseXHRResult(xhr));
};
xhr.onerror = () => {
resolve(errorResponse(xhr, 'Failed to make request.'));
};
xhr.ontimeout = () => {
resolve(errorResponse(xhr, 'Request took longer than expected.'));
};
if (method === 'post' && body) {
xhr.setRequestHeader('Content-Type', 'application/json');
xhr.send(JSON.stringify(body));
}
else {
xhr.send();
}
});
}
exports.request = request;

2
dist/utils.d.ts vendored

@ -0,0 +1,2 @@
export declare function endsWith(str: string, suffix: string): boolean;
export declare const isWeAPP: () => boolean;

7
dist/utils.js vendored

@ -0,0 +1,7 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
function endsWith(str, suffix) {
return str.indexOf(suffix, str.length - suffix.length) !== -1;
}
exports.endsWith = endsWith;
exports.isWeAPP = () => typeof wx !== 'undefined';

@ -0,0 +1 @@
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.

@ -0,0 +1,22 @@
:root {
--light-code-background: #F5F5F5;
--dark-code-background: #1E1E1E;
}
@media (prefers-color-scheme: light) { :root {
--code-background: var(--light-code-background);
} }
@media (prefers-color-scheme: dark) { :root {
--code-background: var(--dark-code-background);
} }
body.light {
--code-background: var(--light-code-background);
}
body.dark {
--code-background: var(--dark-code-background);
}
pre, code { background: var(--code-background); }

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 480 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 855 B

File diff suppressed because one or more lines are too long

@ -0,0 +1,19 @@
<!DOCTYPE html><html class="default"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Account | devapi</title><meta name="description" content="Documentation for devapi"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.body.classList.add(localStorage.getItem("tsd-theme") || "os")</script><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">devapi</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><ul class="tsd-breadcrumb"><li><a href="../modules.html">devapi</a></li><li><a href="../modules/index.html">index</a></li><li><a href="index.Account.html">Account</a></li></ul><h1>Class Account</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><section class="tsd-panel tsd-comment"><div class="tsd-comment tsd-typography"><div class="lead">
<p>账户管理服务器服务接口</p>
</div></div></section><section class="tsd-panel tsd-hierarchy"><h3>Hierarchy</h3><ul class="tsd-hierarchy"><li><span class="target">Account</span></li></ul></section><section class="tsd-panel-group tsd-index-group"><h2>Index</h2><section class="tsd-panel tsd-index-panel"><div class="tsd-index-content"><section class="tsd-index-section "><h3>Constructors</h3><ul class="tsd-index-list"><li class="tsd-kind-constructor tsd-parent-kind-class"><a href="index.Account.html#constructor" class="tsd-kind-icon">constructor</a></li></ul></section><section class="tsd-index-section "><h3>Methods</h3><ul class="tsd-index-list"><li class="tsd-kind-method tsd-parent-kind-class tsd-is-static"><a href="index.Account.html#PostAccountAdminlist" class="tsd-kind-icon">Post<wbr/>Account<wbr/>Adminlist</a></li><li class="tsd-kind-method tsd-parent-kind-class tsd-is-static"><a href="index.Account.html#PostAccountAdminlog" class="tsd-kind-icon">Post<wbr/>Account<wbr/>Adminlog</a></li></ul></section></div></section></section><section class="tsd-panel-group tsd-member-group "><h2>Constructors</h2><section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class"><a id="constructor" class="tsd-anchor"></a><h3 class="tsd-anchor-link">constructor<a href="#constructor" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class"><li class="tsd-signature tsd-kind-icon">new <wbr/>Account<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="index.Account.html" class="tsd-signature-type" data-tsd-kind="Class">Account</a></li></ul><ul class="tsd-descriptions"><li class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="index.Account.html" class="tsd-signature-type" data-tsd-kind="Class">Account</a></h4></li></ul></section></section><section class="tsd-panel-group tsd-member-group "><h2>Methods</h2><section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-static"><a id="PostAccountAdminlist" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span class="tsd-flag ts-flagStatic">Static</span> Post<wbr/>Account<wbr/>Adminlist<a href="#PostAccountAdminlist" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-static"><li class="tsd-signature tsd-kind-icon">Post<wbr/>Account<wbr/>Adminlist<span class="tsd-signature-symbol">(</span>callback<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-symbol">(</span>response<span class="tsd-signature-symbol">: </span><a href="index.PostAccountAdminlistResponse.html" class="tsd-signature-type" data-tsd-kind="Class">PostAccountAdminlistResponse</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span>, loading<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span>, isshow<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li></ul><ul class="tsd-descriptions"><li class="tsd-description"><aside class="tsd-sources"><ul><li>Defined in index.ts:433</li></ul></aside><div class="tsd-comment tsd-typography"><div class="lead">
<p>用户列表</p>
</div></div><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameters"><li><h5><span class="tsd-flag ts-flagOptional">Optional</span> callback: <span class="tsd-signature-symbol">(</span>response<span class="tsd-signature-symbol">: </span><a href="index.PostAccountAdminlistResponse.html" class="tsd-signature-type" data-tsd-kind="Class">PostAccountAdminlistResponse</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span></h5><div class="tsd-comment tsd-typography"><div class="lead">
<p>请求回调函数</p>
</div></div><ul class="tsd-parameters"><li class="tsd-parameter-signature"><ul class="tsd-signatures tsd-kind-type-literal"><li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>response<span class="tsd-signature-symbol">: </span><a href="index.PostAccountAdminlistResponse.html" class="tsd-signature-type" data-tsd-kind="Class">PostAccountAdminlistResponse</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li></ul><ul class="tsd-descriptions"><li class="tsd-description"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameters"><li><h5>response: <a href="index.PostAccountAdminlistResponse.html" class="tsd-signature-type" data-tsd-kind="Class">PostAccountAdminlistResponse</a></h5></li></ul><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4></li></ul></li></ul></li><li><h5>loading: <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = true</span></h5><div class="tsd-comment tsd-typography"><div class="lead">
<p>是否显示loading条</p>
</div></div></li><li><h5>isshow: <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = true</span></h5><div class="tsd-comment tsd-typography"><div class="lead">
<p>是否显示errmsg</p>
</div></div></li></ul><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4></li></ul></section><section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-static"><a id="PostAccountAdminlog" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span class="tsd-flag ts-flagStatic">Static</span> Post<wbr/>Account<wbr/>Adminlog<a href="#PostAccountAdminlog" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-static"><li class="tsd-signature tsd-kind-icon">Post<wbr/>Account<wbr/>Adminlog<span class="tsd-signature-symbol">(</span>callback<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-symbol">(</span>response<span class="tsd-signature-symbol">: </span><a href="index.PostAccountAdminlogResponse.html" class="tsd-signature-type" data-tsd-kind="Class">PostAccountAdminlogResponse</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span>, loading<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span>, isshow<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li></ul><ul class="tsd-descriptions"><li class="tsd-description"><aside class="tsd-sources"><ul><li>Defined in index.ts:476</li></ul></aside><div class="tsd-comment tsd-typography"><div class="lead">
<p>账户修改记录</p>
</div></div><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameters"><li><h5><span class="tsd-flag ts-flagOptional">Optional</span> callback: <span class="tsd-signature-symbol">(</span>response<span class="tsd-signature-symbol">: </span><a href="index.PostAccountAdminlogResponse.html" class="tsd-signature-type" data-tsd-kind="Class">PostAccountAdminlogResponse</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span></h5><div class="tsd-comment tsd-typography"><div class="lead">
<p>请求回调函数</p>
</div></div><ul class="tsd-parameters"><li class="tsd-parameter-signature"><ul class="tsd-signatures tsd-kind-type-literal"><li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>response<span class="tsd-signature-symbol">: </span><a href="index.PostAccountAdminlogResponse.html" class="tsd-signature-type" data-tsd-kind="Class">PostAccountAdminlogResponse</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li></ul><ul class="tsd-descriptions"><li class="tsd-description"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameters"><li><h5>response: <a href="index.PostAccountAdminlogResponse.html" class="tsd-signature-type" data-tsd-kind="Class">PostAccountAdminlogResponse</a></h5></li></ul><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4></li></ul></li></ul></li><li><h5>loading: <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = true</span></h5><div class="tsd-comment tsd-typography"><div class="lead">
<p>是否显示loading条</p>
</div></div></li><li><h5>isshow: <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = true</span></h5><div class="tsd-comment tsd-typography"><div class="lead">
<p>是否显示errmsg</p>
</div></div></li></ul><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4></li></ul></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Modules</a></li><li class=" tsd-kind-module"><a href="../modules/globalunit.html">globalunit</a></li><li class="current tsd-kind-module"><a href="../modules/index.html">index</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-class tsd-parent-kind-module"><a href="index.Account.html" class="tsd-kind-icon">Account</a><ul><li class="tsd-kind-constructor tsd-parent-kind-class"><a href="index.Account.html#constructor" class="tsd-kind-icon">constructor</a></li><li class="tsd-kind-method tsd-parent-kind-class tsd-is-static"><a href="index.Account.html#PostAccountAdminlist" class="tsd-kind-icon">Post<wbr/>Account<wbr/>Adminlist</a></li><li class="tsd-kind-method tsd-parent-kind-class tsd-is-static"><a href="index.Account.html#PostAccountAdminlog" class="tsd-kind-icon">Post<wbr/>Account<wbr/>Adminlog</a></li></ul></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li><li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-method tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="../assets/main.js"></script></body></html>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -0,0 +1,13 @@
<!DOCTYPE html><html class="default"><head><meta charSet="utf-8"/><meta http-equiv="x-ua-compatible" content="IE=edge"/><title>Fans | devapi</title><meta name="description" content="Documentation for devapi"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="../assets/style.css"/><link rel="stylesheet" href="../assets/highlight.css"/><script async src="../assets/search.js" id="search-script"></script></head><body><script>document.body.classList.add(localStorage.getItem("tsd-theme") || "os")</script><header><div class="tsd-page-toolbar"><div class="container"><div class="table-wrap"><div class="table-cell" id="tsd-search" data-base=".."><div class="field"><label for="tsd-search-field" class="tsd-widget search no-caption">Search</label><input type="text" id="tsd-search-field"/></div><ul class="results"><li class="state loading">Preparing search index...</li><li class="state failure">The search index is not available</li></ul><a href="../index.html" class="title">devapi</a></div><div class="table-cell" id="tsd-widgets"><div id="tsd-filter"><a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a><div class="tsd-filter-group"><div class="tsd-select" id="tsd-filter-visibility"><span class="tsd-select-label">All</span><ul class="tsd-select-list"><li data-value="public">Public</li><li data-value="protected">Public/Protected</li><li data-value="private" class="selected">All</li></ul></div> <input type="checkbox" id="tsd-filter-inherited" checked/><label class="tsd-widget" for="tsd-filter-inherited">Inherited</label><input type="checkbox" id="tsd-filter-externals" checked/><label class="tsd-widget" for="tsd-filter-externals">Externals</label></div></div><a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a></div></div></div></div><div class="tsd-page-title"><div class="container"><ul class="tsd-breadcrumb"><li><a href="../modules.html">devapi</a></li><li><a href="../modules/index.html">index</a></li><li><a href="index.Fans.html">Fans</a></li></ul><h1>Class Fans</h1></div></div></header><div class="container container-main"><div class="row"><div class="col-8 col-content"><section class="tsd-panel tsd-comment"><div class="tsd-comment tsd-typography"><div class="lead">
<p>fans管理服务器服务接口</p>
</div></div></section><section class="tsd-panel tsd-hierarchy"><h3>Hierarchy</h3><ul class="tsd-hierarchy"><li><span class="target">Fans</span></li></ul></section><section class="tsd-panel-group tsd-index-group"><h2>Index</h2><section class="tsd-panel tsd-index-panel"><div class="tsd-index-content"><section class="tsd-index-section "><h3>Constructors</h3><ul class="tsd-index-list"><li class="tsd-kind-constructor tsd-parent-kind-class"><a href="index.Fans.html#constructor" class="tsd-kind-icon">constructor</a></li></ul></section><section class="tsd-index-section "><h3>Methods</h3><ul class="tsd-index-list"><li class="tsd-kind-method tsd-parent-kind-class tsd-is-static"><a href="index.Fans.html#PostFansAdminGetuserfansnum" class="tsd-kind-icon">Post<wbr/>Fans<wbr/>Admin<wbr/>Getuserfansnum</a></li></ul></section></div></section></section><section class="tsd-panel-group tsd-member-group "><h2>Constructors</h2><section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class"><a id="constructor" class="tsd-anchor"></a><h3 class="tsd-anchor-link">constructor<a href="#constructor" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class"><li class="tsd-signature tsd-kind-icon">new <wbr/>Fans<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="index.Fans.html" class="tsd-signature-type" data-tsd-kind="Class">Fans</a></li></ul><ul class="tsd-descriptions"><li class="tsd-description"><h4 class="tsd-returns-title">Returns <a href="index.Fans.html" class="tsd-signature-type" data-tsd-kind="Class">Fans</a></h4></li></ul></section></section><section class="tsd-panel-group tsd-member-group "><h2>Methods</h2><section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-static"><a id="PostFansAdminGetuserfansnum" class="tsd-anchor"></a><h3 class="tsd-anchor-link"><span class="tsd-flag ts-flagStatic">Static</span> Post<wbr/>Fans<wbr/>Admin<wbr/>Getuserfansnum<a href="#PostFansAdminGetuserfansnum" aria-label="Permalink" class="tsd-anchor-icon"><svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-link" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path d="M10 14a3.5 3.5 0 0 0 5 0l4 -4a3.5 3.5 0 0 0 -5 -5l-.5 .5"></path><path d="M14 10a3.5 3.5 0 0 0 -5 0l-4 4a3.5 3.5 0 0 0 5 5l.5 -.5"></path></svg></a></h3><ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-static"><li class="tsd-signature tsd-kind-icon">Post<wbr/>Fans<wbr/>Admin<wbr/>Getuserfansnum<span class="tsd-signature-symbol">(</span>ids<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span>, callback<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-symbol">(</span>response<span class="tsd-signature-symbol">: </span><a href="index.PostFansAdminGetuserfansnumResponse.html" class="tsd-signature-type" data-tsd-kind="Class">PostFansAdminGetuserfansnumResponse</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span>, loading<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span>, isshow<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li></ul><ul class="tsd-descriptions"><li class="tsd-description"><aside class="tsd-sources"><ul><li>Defined in index.ts:4779</li></ul></aside><div class="tsd-comment tsd-typography"><div class="lead">
<p>批量获取粉丝数量</p>
</div></div><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameters"><li><h5>ids: <span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">[]</span></h5><div class="tsd-comment tsd-typography"><div class="lead">
<p>用户id</p>
</div></div></li><li><h5><span class="tsd-flag ts-flagOptional">Optional</span> callback: <span class="tsd-signature-symbol">(</span>response<span class="tsd-signature-symbol">: </span><a href="index.PostFansAdminGetuserfansnumResponse.html" class="tsd-signature-type" data-tsd-kind="Class">PostFansAdminGetuserfansnumResponse</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span></h5><div class="tsd-comment tsd-typography"><div class="lead">
<p>请求回调函数</p>
</div></div><ul class="tsd-parameters"><li class="tsd-parameter-signature"><ul class="tsd-signatures tsd-kind-type-literal"><li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>response<span class="tsd-signature-symbol">: </span><a href="index.PostFansAdminGetuserfansnumResponse.html" class="tsd-signature-type" data-tsd-kind="Class">PostFansAdminGetuserfansnumResponse</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li></ul><ul class="tsd-descriptions"><li class="tsd-description"><h4 class="tsd-parameters-title">Parameters</h4><ul class="tsd-parameters"><li><h5>response: <a href="index.PostFansAdminGetuserfansnumResponse.html" class="tsd-signature-type" data-tsd-kind="Class">PostFansAdminGetuserfansnumResponse</a></h5></li></ul><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4></li></ul></li></ul></li><li><h5>loading: <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = true</span></h5><div class="tsd-comment tsd-typography"><div class="lead">
<p>是否显示loading条</p>
</div></div></li><li><h5>isshow: <span class="tsd-signature-type">boolean</span><span class="tsd-signature-symbol"> = true</span></h5><div class="tsd-comment tsd-typography"><div class="lead">
<p>是否显示errmsg</p>
</div></div></li></ul><h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4></li></ul></section></section></div><div class="col-4 col-menu menu-sticky-wrap menu-highlight"><nav class="tsd-navigation primary"><ul><li class=""><a href="../modules.html">Modules</a></li><li class=" tsd-kind-module"><a href="../modules/globalunit.html">globalunit</a></li><li class="current tsd-kind-module"><a href="../modules/index.html">index</a></li></ul></nav><nav class="tsd-navigation secondary menu-sticky"><ul><li class="current tsd-kind-class tsd-parent-kind-module"><a href="index.Fans.html" class="tsd-kind-icon">Fans</a><ul><li class="tsd-kind-constructor tsd-parent-kind-class"><a href="index.Fans.html#constructor" class="tsd-kind-icon">constructor</a></li><li class="tsd-kind-method tsd-parent-kind-class tsd-is-static"><a href="index.Fans.html#PostFansAdminGetuserfansnum" class="tsd-kind-icon">Post<wbr/>Fans<wbr/>Admin<wbr/>Getuserfansnum</a></li></ul></li></ul></nav></div></div></div><footer class="with-border-bottom"><div class="container"><h2>Legend</h2><div class="tsd-legend-group"><ul class="tsd-legend"><li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li><li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li></ul><ul class="tsd-legend"><li class="tsd-kind-method tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li></ul></div><h2>Settings</h2><p>Theme <select id="theme"><option value="os">OS</option><option value="light">Light</option><option value="dark">Dark</option></select></p></div></footer><div class="container tsd-generator"><p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p></div><div class="overlay"></div><script src="../assets/main.js"></script></body></html>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save