@lambo-design/pro-layout 1.0.0-beta.453 → 1.0.0-beta.454
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.454",
|
|
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/core": "^4.7.1-beta.178",
|
|
14
|
+
"@lambo-design/shared": "^1.0.0-beta.364"
|
|
15
15
|
},
|
|
16
16
|
"scripts": {
|
|
17
17
|
"release-pro-layout": "pnpm release-beta && git push --follow-tags && pnpm re-publish",
|
package/src/components/pro-layout-header/pro-layout-nav/components/pro-layout-nav-slide-menu.vue
CHANGED
|
@@ -120,7 +120,7 @@ export default {
|
|
|
120
120
|
if (this.topMenList.length > 0) {
|
|
121
121
|
let appId = this.topMenList[0].appId
|
|
122
122
|
if (this.systemInfo.backToHome && this.systemInfo.backToHomeStyle === "app") {
|
|
123
|
-
appId =
|
|
123
|
+
appId = 'backToHome'
|
|
124
124
|
}
|
|
125
125
|
for (let i = 0; i < this.topMenList.length; i++) {
|
|
126
126
|
if (this.topMenList[i].selected == true) {
|
|
@@ -210,7 +210,7 @@ export default {
|
|
|
210
210
|
if (this.navList.length > 0) {
|
|
211
211
|
let appId = this.navList[0].appId;
|
|
212
212
|
if (this.systemInfo.backToHome === "1" && this.systemInfo.backToHomeStyle === "app") {
|
|
213
|
-
appId =
|
|
213
|
+
appId = 'backHome';
|
|
214
214
|
}
|
|
215
215
|
for (let i = 0; i < this.navList.length; i++) {
|
|
216
216
|
if (this.navList[i].selected == true) {
|