vue2-client 1.10.7 → 1.10.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue2-client",
3
- "version": "1.10.7",
3
+ "version": "1.10.10",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint",
@@ -19,7 +19,7 @@
19
19
  },
20
20
  "dependencies": {
21
21
  "@afwenming123/vue-easy-tree": "^1.0.1",
22
- "@afwenming123/vue-plugin-hiprint": "^0.0.66",
22
+ "@afwenming123/vue-plugin-hiprint": "^0.0.68",
23
23
  "@amap/amap-jsapi-loader": "^1.0.1",
24
24
  "@antv/data-set": "^0.11.8",
25
25
  "@antv/g2plot": "^2.4.31",
@@ -107,11 +107,10 @@ export default {
107
107
  this.loadCacheConfig(val)
108
108
  },
109
109
  $route: function (newRoute) {
110
- newRoute.fullPath = newRoute.fullPath.split('#')[0]
111
110
  if (!newRoute?.meta.noPusTabs) {
112
111
  this.activePage = newRoute.fullPath
113
112
  }
114
- const page = this.pageList.find(item => item.path === newRoute.fullPath)
113
+ const page = this.pageList.find(item => item.path.split('#')[0] === newRoute.fullPath.split('#')[0])
115
114
  if (!this.multiPage) {
116
115
  this.pageList = [this.createPage(newRoute)]
117
116
  } else if (page) {