@lambo-design/pro-layout 1.0.0-beta.433 → 1.0.0-beta.434
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": "@lambo-design/pro-layout",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.434",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "lambo",
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"registry": "https://registry.npmjs.org/"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
|
-
"@lambo-design/
|
|
14
|
-
"@lambo-design/
|
|
13
|
+
"@lambo-design/shared": "^1.0.0-beta.352",
|
|
14
|
+
"@lambo-design/core": "^4.7.1-beta.176"
|
|
15
15
|
},
|
|
16
16
|
"scripts": {
|
|
17
17
|
"release-pro-layout": "pnpm release-beta && git push --follow-tags && pnpm re-publish",
|
|
@@ -449,7 +449,7 @@ export default {
|
|
|
449
449
|
const currentApp = appList.find(app => app.appId === this.activeName);
|
|
450
450
|
// 如果找到应用且隐藏了左侧菜单,返回 activeName
|
|
451
451
|
if (currentApp) {
|
|
452
|
-
const isHideLeftMenu = currentApp.extendProps?.is_hide_left_menu;
|
|
452
|
+
const isHideLeftMenu = currentApp.extendProps?.is_hide_left_menu || currentApp.setting?.is_hide_left_menu;
|
|
453
453
|
if (isHideLeftMenu === '1' || isHideLeftMenu === 1) {
|
|
454
454
|
return this.activeName;
|
|
455
455
|
}
|