- Vue 3 + TypeScript + Element Plus 前端界面 - Pinia 状态管理 - Vue Router 4 路由管理 - Axios HTTP 客户端 - MSW (Mock Service Worker) 开发环境模拟 - 账户管理界面 (列表、详情、三科目余额展示) - 交易管理界面 (列表、详情) - 对账管理界面 (三账校验) - 完善的 API 客户端封装 - Docker 容器化配置 - Nginx 配置用于生产环境
83 lines
2.0 KiB
JavaScript
83 lines
2.0 KiB
JavaScript
import {
|
|
decodeBuffer,
|
|
encodeBuffer
|
|
} from "./chunk-6HYIRFX2.mjs";
|
|
import {
|
|
FetchResponse,
|
|
IS_PATCHED_MODULE,
|
|
RequestController,
|
|
getRawRequest
|
|
} from "./chunk-LIKZF2VU.mjs";
|
|
import {
|
|
INTERNAL_REQUEST_ID_HEADER_NAME,
|
|
Interceptor,
|
|
InterceptorReadyState,
|
|
createRequestId,
|
|
deleteGlobalSymbol,
|
|
getGlobalSymbol
|
|
} from "./chunk-Z5TSB3T6.mjs";
|
|
|
|
// src/BatchInterceptor.ts
|
|
var BatchInterceptor = class extends Interceptor {
|
|
constructor(options) {
|
|
BatchInterceptor.symbol = Symbol(options.name);
|
|
super(BatchInterceptor.symbol);
|
|
this.interceptors = options.interceptors;
|
|
}
|
|
setup() {
|
|
const logger = this.logger.extend("setup");
|
|
logger.info("applying all %d interceptors...", this.interceptors.length);
|
|
for (const interceptor of this.interceptors) {
|
|
logger.info('applying "%s" interceptor...', interceptor.constructor.name);
|
|
interceptor.apply();
|
|
logger.info("adding interceptor dispose subscription");
|
|
this.subscriptions.push(() => interceptor.dispose());
|
|
}
|
|
}
|
|
on(event, listener) {
|
|
for (const interceptor of this.interceptors) {
|
|
interceptor.on(event, listener);
|
|
}
|
|
return this;
|
|
}
|
|
once(event, listener) {
|
|
for (const interceptor of this.interceptors) {
|
|
interceptor.once(event, listener);
|
|
}
|
|
return this;
|
|
}
|
|
off(event, listener) {
|
|
for (const interceptor of this.interceptors) {
|
|
interceptor.off(event, listener);
|
|
}
|
|
return this;
|
|
}
|
|
removeAllListeners(event) {
|
|
for (const interceptors of this.interceptors) {
|
|
interceptors.removeAllListeners(event);
|
|
}
|
|
return this;
|
|
}
|
|
};
|
|
|
|
// src/utils/getCleanUrl.ts
|
|
function getCleanUrl(url, isAbsolute = true) {
|
|
return [isAbsolute && url.origin, url.pathname].filter(Boolean).join("");
|
|
}
|
|
export {
|
|
BatchInterceptor,
|
|
FetchResponse,
|
|
INTERNAL_REQUEST_ID_HEADER_NAME,
|
|
IS_PATCHED_MODULE,
|
|
Interceptor,
|
|
InterceptorReadyState,
|
|
RequestController,
|
|
createRequestId,
|
|
decodeBuffer,
|
|
deleteGlobalSymbol,
|
|
encodeBuffer,
|
|
getCleanUrl,
|
|
getGlobalSymbol,
|
|
getRawRequest
|
|
};
|
|
//# sourceMappingURL=index.mjs.map
|