API统计页面

This commit is contained in:
BBIT-Kai
2026-07-27 10:16:24 +08:00
parent 89f6944e65
commit 38efd8ef1a
21 changed files with 3554 additions and 123 deletions
@@ -26,6 +26,11 @@ type ExtendOptions<T = any> = {
* - data: 解构响应的BODY数据,只返回其中的data节点数据(会检查status和code是否为成功状态)。
*/
responseReturn?: 'body' | 'data' | 'raw';
/**
* 是否由全局响应拦截器显示错误消息。
* 页面需要使用内联错误态时可设为 false。
*/
showErrorMessage?: boolean;
};
type RequestClientConfig<T = any> = AxiosRequestConfig<T> & ExtendOptions<T>;