@oinone/kunlun-vue-admin-layout 6.4.7 → 6.4.9

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.
@@ -11610,7 +11610,7 @@ let UserWidget = class UserWidget extends MaskWidget {
11610
11610
  OioProvider.setBrowserConfig(getDefaultBrowser());
11611
11611
  setSessionPath(undefined);
11612
11612
  ClearCache.clear();
11613
- this.router.push({ segments: [{ path: url }] });
11613
+ window.location.assign(`${window.location.origin}/${url}`);
11614
11614
  OioProvider.refreshSystemMajorConfig();
11615
11615
  }
11616
11616
  fetchUserInfo() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oinone/kunlun-vue-admin-layout",
3
- "version": "6.4.7",
3
+ "version": "6.4.9",
4
4
  "main": "index.ts",
5
5
  "scripts": {
6
6
  "prebuild": "rimraf dist",
@@ -13,11 +13,11 @@
13
13
  "doc": "typedoc --out docs src/index.ts"
14
14
  },
15
15
  "dependencies": {
16
- "@oinone/kunlun-vue-router": "6.4.7",
17
- "@oinone/kunlun-vue-ui": "6.4.7",
18
- "@oinone/kunlun-vue-ui-antd": "6.4.7",
19
- "@oinone/kunlun-vue-ui-common": "6.4.7",
20
- "@oinone/kunlun-vue-widget": "6.4.7",
16
+ "@oinone/kunlun-vue-router": "6.4.9",
17
+ "@oinone/kunlun-vue-ui": "6.4.9",
18
+ "@oinone/kunlun-vue-ui-antd": "6.4.9",
19
+ "@oinone/kunlun-vue-ui-common": "6.4.9",
20
+ "@oinone/kunlun-vue-widget": "6.4.9",
21
21
  "vue-json-pretty": "^2.4.0"
22
22
  },
23
23
  "devDependencies": {
@@ -96,7 +96,7 @@ export class UserWidget extends MaskWidget {
96
96
  OioProvider.setBrowserConfig(getDefaultBrowser());
97
97
  setSessionPath(undefined);
98
98
  ClearCache.clear();
99
- this.router.push({ segments: [{ path: url }] });
99
+ window.location.assign(`${window.location.origin}/${url}`);
100
100
  OioProvider.refreshSystemMajorConfig();
101
101
  }
102
102