module-menu-vue 0.3.27 → 0.3.28

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": "module-menu-vue",
3
- "version": "0.3.27",
3
+ "version": "0.3.28",
4
4
  "description": "城市大数据平台菜单--Vue版",
5
5
  "main": "/index.js",
6
6
  "scripts": {
@@ -80,6 +80,10 @@ export default {
80
80
  isBigDataFoundationPlatform: {
81
81
  type: Boolean,
82
82
  default: false,
83
+ },
84
+ PZCS: {
85
+ type: Boolean,
86
+ default: false,
83
87
  }
84
88
  },
85
89
  created() {
@@ -200,7 +204,11 @@ export default {
200
204
  // }
201
205
  }
202
206
  } else if (flag === 'app') {
203
- url = '/dataadmin/#/appSystem/index'
207
+ if (this.PZCS) {
208
+ url = '/dataadmin/#/appManager/index'
209
+ } else {
210
+ url = '/dataadmin/#/appSystem/index'
211
+ }
204
212
  location.href = url;
205
213
  } else if (flag === 'logout') {
206
214
  this.logoutFunc()