mirror of
https://gitee.com/bootx/dax-pay-ui.git
synced 2025-09-10 22:19:31 +00:00
修复axios中responseInterceptorsCatch的类型 (#2811)
* fix(table): 使用lodash 的merge来递归assign,优化在多对象嵌套情况下的结构 * fix(view): 修复登入页面点击其他登入方式后返回时视图异常的bug * fix(util): 修复类型错误
This commit is contained in:
@@ -5,7 +5,7 @@ import type {
|
|||||||
AxiosInstance,
|
AxiosInstance,
|
||||||
AxiosRequestConfig,
|
AxiosRequestConfig,
|
||||||
AxiosResponse,
|
AxiosResponse,
|
||||||
InternalAxiosRequestConfig
|
InternalAxiosRequestConfig,
|
||||||
} from 'axios';
|
} from 'axios';
|
||||||
import type { RequestOptions, Result } from '/#/axios';
|
import type { RequestOptions, Result } from '/#/axios';
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
// axios配置 可自行根据项目进行更改,只需更改该文件即可,其他文件可以不动
|
// axios配置 可自行根据项目进行更改,只需更改该文件即可,其他文件可以不动
|
||||||
// The axios configuration can be changed according to the project, just change the file, other files can be left unchanged
|
// The axios configuration can be changed according to the project, just change the file, other files can be left unchanged
|
||||||
|
|
||||||
import type { AxiosResponse } from 'axios';
|
import type { AxiosInstance, AxiosResponse } from 'axios';
|
||||||
import { clone } from 'lodash-es';
|
import { clone } from 'lodash-es';
|
||||||
import type { RequestOptions, Result } from '/#/axios';
|
import type { RequestOptions, Result } from '/#/axios';
|
||||||
import type { AxiosTransform, CreateAxiosOptions } from './axiosTransform';
|
import type { AxiosTransform, CreateAxiosOptions } from './axiosTransform';
|
||||||
@@ -175,7 +175,7 @@ const transform: AxiosTransform = {
|
|||||||
/**
|
/**
|
||||||
* @description: 响应错误处理
|
* @description: 响应错误处理
|
||||||
*/
|
*/
|
||||||
responseInterceptorsCatch: (axiosInstance: AxiosResponse, error: any) => {
|
responseInterceptorsCatch: (axiosInstance: AxiosInstance, error: any) => {
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const errorLogStore = useErrorLogStoreWithOut();
|
const errorLogStore = useErrorLogStoreWithOut();
|
||||||
errorLogStore.addAjaxErrorInfo(error);
|
errorLogStore.addAjaxErrorInfo(error);
|
||||||
|
Reference in New Issue
Block a user