module-menu 0.3.25 → 0.3.26

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",
3
- "version": "0.3.25",
3
+ "version": "0.3.26",
4
4
  "description": "城市大数据平台公共头部及尾部",
5
5
  "main": "src/pages/index.jsx",
6
6
  "scripts": {
@@ -177,10 +177,10 @@ const ModuleUser = ({ stash = '', isBigDataFoundationPlatform = false }) => {
177
177
  key="personalCenter"
178
178
  onClick={() =>
179
179
  handleClickmenu(
180
- ['integration', 'LNRD', 'HBJK'].includes(stash)
181
- ? '/admin-ui/data-share-portal/personal/info'
182
- : (isBigDataFoundationPlatform
183
- ? '/admin-ui/user/profile'
180
+ isBigDataFoundationPlatform
181
+ ? '/admin-ui/user/profile'
182
+ : (['integration', 'LNRD', 'HBJK'].includes(stash)
183
+ ? '/admin-ui/data-share-portal/personal/info'
184
184
  : (stash === 'GZW' ? '/data-platform/#/info/index' : '/#/info/index'))
185
185
  )
186
186
  }