@lambo-design/pro-layout 1.0.0-beta.474 → 1.0.0-beta.475

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.474",
3
+ "version": "1.0.0-beta.475",
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/shared": "^1.0.0-beta.384",
14
- "@lambo-design/core": "^4.7.1-beta.183"
13
+ "@lambo-design/shared": "^1.0.0-beta.385",
14
+ "@lambo-design/core": "^4.7.1-beta.184"
15
15
  },
16
16
  "scripts": {
17
17
  "release-pro-layout": "pnpm release-beta && git push --follow-tags && pnpm re-publish",
@@ -172,7 +172,10 @@ export default {
172
172
  if(oldAppConfig && oldAppConfig.hasOwnProperty('is_hide_left_menu')
173
173
  && oldAppConfig.is_hide_left_menu === '1' && oldAppConfig.homePagePath){
174
174
  let removeTag = this.tagList.filter(item => item.meta.appId === oldAppInfo.appId)
175
- this.handleClose(removeTag[0],true)
175
+ //this.handleClose(removeTag[0],true)
176
+ for (let oneTag of removeTag) {
177
+ this.handleClose(oneTag,true)
178
+ }
176
179
  }
177
180
  }
178
181
  },