imatrix-ui 2.9.19-boe11 → 2.9.19-boe12
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
|
@@ -56,15 +56,13 @@ export default {
|
|
|
56
56
|
},
|
|
57
57
|
created() {
|
|
58
58
|
this.firstLeafMenu = this.getMyFirstMenu(this.menus)
|
|
59
|
-
console.log('初始选中菜单---firstLeafMenu=', this.firstLeafMenu)
|
|
60
59
|
if (this.firstLeafMenu && this.firstLeafMenu.fullPath) {
|
|
61
60
|
// 跳转到第一个页面
|
|
62
61
|
if (this.firstLeafMenu.pageType && this.firstLeafMenu.pageType === 'iframe') {
|
|
63
62
|
const iframeSrc = this.firstLeafMenu.fullPath
|
|
64
|
-
const pageCode = this.firstLeafMenu.path
|
|
63
|
+
// const pageCode = this.firstLeafMenu.path
|
|
65
64
|
const menuName = getI18nName(this.firstLeafMenu)
|
|
66
|
-
|
|
67
|
-
const query = { src: iframeSrc, customSystem: this.systemCode, pageCode: pageCode, _menuCode: this.firstLeafMenu.code, _menuName: menuName }
|
|
65
|
+
const query = { src: iframeSrc, customSystem: this.systemCode, _menuCode: this.firstLeafMenu.code, _menuName: menuName }
|
|
68
66
|
this.addTabs(query, this.$store.state.tabContent.openTab, '/dsc/iframe-page', '/dsc/iframe-page')
|
|
69
67
|
this.$router.push({ path: '/dsc-index/iframe-page', query: query })
|
|
70
68
|
} else {
|