ztxkutils 2.10.66-56 → 2.10.66-58
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/hooks/useHistory.d.ts +3 -1
- package/dist/index.js +1 -1
- package/dist/request-934324cc.js +3020 -0
- package/dist/request.js +1 -1
- package/dist/useHistory.js +7 -1
- package/package.json +1 -1
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
* @author 陈亚雄
|
|
3
3
|
* @description 代理路由的push方法,可以用window.open的方式跳转页面
|
|
4
4
|
*/
|
|
5
|
-
export declare function useHistory(routeBasename?: string
|
|
5
|
+
export declare function useHistory(routeBasename?: string, options?: {
|
|
6
|
+
pushCallback?: any;
|
|
7
|
+
}): any;
|
|
6
8
|
/**
|
|
7
9
|
* @author 陈亚雄
|
|
8
10
|
* @description 设置浏览器标题信息
|
package/dist/index.js
CHANGED
|
@@ -2,7 +2,7 @@ export { d as authority } from './authority-7a91cb9f.js';
|
|
|
2
2
|
export { d as dataModel } from './dataModel-f1ef06bc.js';
|
|
3
3
|
export { t as tools } from './tools-38e8ca87.js';
|
|
4
4
|
export { v as validate } from './validate-2138d94a.js';
|
|
5
|
-
export { r as request } from './request-
|
|
5
|
+
export { r as request } from './request-934324cc.js';
|
|
6
6
|
export { r as reqUrl } from './reqUrl-e44a69ed.js';
|
|
7
7
|
import './i18next.js';
|
|
8
8
|
import './tslib.es6-35653116.js';
|