@lambo-design/pro-layout 1.0.0-beta.87 → 1.0.0-beta.89

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.vue +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lambo-design/pro-layout",
3
- "version": "1.0.0-beta.87",
3
+ "version": "1.0.0-beta.89",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {},
package/src/index.vue CHANGED
@@ -167,12 +167,14 @@ export default {
167
167
  },
168
168
  initApp(){
169
169
  let appInfo = {}
170
- if (!appInfo && this.acceptAppId){
170
+ if (this.acceptAppId !== ''){
171
171
  appInfo = this.navList.filter(item => item.appId == this.acceptAppId)[0];
172
172
  }
173
173
  this.appId = this.acceptAppId;
174
174
  let appId;
175
175
  appId = this.appId
176
+ console.log("lambodesign-appId:",appId)
177
+ console.log("lambodesign-appInfo:",appInfo)
176
178
  this.$emit('change-app',{appId,appInfo})
177
179
  },
178
180
  changeApp(appId,appInfo) {