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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "imatrix-ui",
3
- "version": "2.9.19-boe11",
3
+ "version": "2.9.19-boe12",
4
4
  "description": "前端组件库:表格、表单、组织结构树等",
5
5
  "main": "lib/super-ui.umd.min.js",
6
6
  "private": false,
@@ -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
- console.log('初始选中菜单---menuName=', menuName, 'firstLeafMenu.code=', this.firstLeafMenu.code, 'firstLeafMenu.path=', pageCode, 'firstLeafMenu.fullPath=', iframeSrc)
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 {
@@ -19,7 +19,6 @@ export default {
19
19
  },
20
20
  mounted() {
21
21
  this.src = this.$route.query.src
22
- console.log('tab-content-iframe-index vue页面---this.src=', this.src, 'this.$route.query=', this.$route.query)
23
22
  }
24
23
  }
25
24
  </script>