后端

main-content.vue 4.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <template>
  2. <main class="site-content" :class="{ 'site-content--tabs': $route.meta.isTab }">
  3. <!-- 主入口标签页 s -->
  4. <el-tabs
  5. v-if="$route.meta.isTab"
  6. v-model="mainTabsActiveName"
  7. :closable="true"
  8. @tab-click="selectedTabHandle"
  9. @tab-remove="removeTabHandle">
  10. <el-dropdown class="site-tabs__tools" :show-timeout="0">
  11. <i class="el-icon-arrow-down el-icon--right"></i>
  12. <el-dropdown-menu slot="dropdown">
  13. <el-dropdown-item @click.native="tabsCloseCurrentHandle">关闭当前标签页</el-dropdown-item>
  14. <el-dropdown-item @click.native="tabsCloseOtherHandle">关闭其它标签页</el-dropdown-item>
  15. <el-dropdown-item @click.native="tabsCloseAllHandle">关闭全部标签页</el-dropdown-item>
  16. <el-dropdown-item @click.native="tabsRefreshCurrentHandle">刷新当前标签页</el-dropdown-item>
  17. </el-dropdown-menu>
  18. </el-dropdown>
  19. <el-tab-pane
  20. v-for="item in mainTabs"
  21. :key="item.name"
  22. :label="item.title"
  23. :name="item.name">
  24. <el-card :body-style="siteContentViewHeight">
  25. <iframe
  26. v-if="item.type === 'iframe'"
  27. :src="item.iframeUrl"
  28. width="100%" height="100%" frameborder="0" scrolling="yes">
  29. </iframe>
  30. <keep-alive v-else>
  31. <router-view v-if="item.name === mainTabsActiveName" />
  32. </keep-alive>
  33. </el-card>
  34. </el-tab-pane>
  35. </el-tabs>
  36. <!-- 主入口标签页 e -->
  37. <el-card v-else :body-style="siteContentViewHeight">
  38. <keep-alive>
  39. <router-view />
  40. </keep-alive>
  41. </el-card>
  42. </main>
  43. </template>
  44. <script>
  45. import { isURL } from '@/utils/validate'
  46. export default {
  47. data () {
  48. return {
  49. }
  50. },
  51. computed: {
  52. documentClientHeight: {
  53. get () { return this.$store.state.common.documentClientHeight }
  54. },
  55. menuActiveName: {
  56. get () { return this.$store.state.common.menuActiveName },
  57. set (val) { this.$store.commit('common/updateMenuActiveName', val) }
  58. },
  59. mainTabs: {
  60. get () { return this.$store.state.common.mainTabs },
  61. set (val) { this.$store.commit('common/updateMainTabs', val) }
  62. },
  63. mainTabsActiveName: {
  64. get () { return this.$store.state.common.mainTabsActiveName },
  65. set (val) { this.$store.commit('common/updateMainTabsActiveName', val) }
  66. },
  67. siteContentViewHeight () {
  68. var height = this.documentClientHeight - 50 - 30 - 2
  69. if (this.$route.meta.isTab) {
  70. height -= 40
  71. return isURL(this.$route.meta.iframeUrl) ? { height: height + 'px' } : { minHeight: height + 'px' }
  72. }
  73. return { minHeight: height + 'px' }
  74. }
  75. },
  76. methods: {
  77. // tabs, 选中tab
  78. selectedTabHandle (tab) {
  79. tab = this.mainTabs.filter(item => item.name === tab.name)
  80. if (tab.length >= 1) {
  81. this.$router.push({ name: tab[0].name })
  82. }
  83. },
  84. // tabs, 删除tab
  85. removeTabHandle (tabName) {
  86. this.mainTabs = this.mainTabs.filter(item => item.name !== tabName)
  87. if (this.mainTabs.length >= 1) {
  88. // 当前选中tab被删除
  89. if (tabName === this.mainTabsActiveName) {
  90. this.$router.push({ name: this.mainTabs[this.mainTabs.length - 1].name }, () => {
  91. this.mainTabsActiveName = this.$route.name
  92. })
  93. }
  94. } else {
  95. this.menuActiveName = ''
  96. this.$router.push({ name: 'home' })
  97. }
  98. },
  99. // tabs, 关闭当前
  100. tabsCloseCurrentHandle () {
  101. this.removeTabHandle(this.mainTabsActiveName)
  102. },
  103. // tabs, 关闭其它
  104. tabsCloseOtherHandle () {
  105. this.mainTabs = this.mainTabs.filter(item => item.name === this.mainTabsActiveName)
  106. },
  107. // tabs, 关闭全部
  108. tabsCloseAllHandle () {
  109. this.mainTabs = []
  110. this.menuActiveName = ''
  111. this.$router.push({ name: 'home' })
  112. },
  113. // tabs, 刷新当前
  114. tabsRefreshCurrentHandle () {
  115. var tab = this.$route
  116. this.removeTabHandle(tab.name)
  117. this.$nextTick(() => {
  118. this.$router.push({ name: tab.name, query: tab.query, params: tab.params })
  119. })
  120. }
  121. }
  122. }
  123. </script>