main.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. <template>
  2. <div :style="auiWrapper" v-loading.fullscreen.lock="loading" :element-loading-text="$t('loading')" class="aui-wrapper all-main-wraper">
  3. <template v-if="!loading">
  4. <div class="smp_main-t">
  5. <main-navbar v-if="navbarFlag"/>
  6. </div>
  7. <div class="smp_main-b">
  8. <div class="smp_main-l">
  9. <main-sidebar v-if="sidebarFlag"/>
  10. </div>
  11. <div class="smp_main-r" :class="{'onClose':$store.state.sidebarFold}">
  12. <content-crumb></content-crumb>
  13. <main-content />
  14. </div>
  15. </div>
  16. </template>
  17. </div>
  18. </template>
  19. <script>
  20. import MainNavbar from './main-navbar'
  21. import MainSidebar from './main-sidebar'
  22. import MainContent from './main-content'
  23. import debounce from 'lodash/debounce'
  24. import ContentCrumb from './main-content-crumb'
  25. export default {
  26. provide () {
  27. return {
  28. // 刷新
  29. refresh () {
  30. this.$store.state.contentIsNeedRefresh = true
  31. this.$nextTick(() => {
  32. this.$store.state.contentIsNeedRefresh = false
  33. })
  34. }
  35. }
  36. },
  37. data () {
  38. return {
  39. loading: true,
  40. navbarFlag: false,
  41. sidebarFlag: false,
  42. mainContent: 'aui-content__wrapper',
  43. auiWrapper: ''
  44. }
  45. },
  46. components: {
  47. MainNavbar,
  48. MainSidebar,
  49. MainContent,
  50. ContentCrumb
  51. },
  52. watch: {
  53. $route: 'routeHandle'
  54. },
  55. created () {
  56. // this.windowResizeHandle()
  57. // this.routeHandle(this.$route)
  58. Promise.all([
  59. this.getUserInfo(),
  60. this.getPermissions()
  61. ]).then(() => {
  62. this.loading = false
  63. })
  64. this.loading = false
  65. this.navbarFlag = window.SITE_CONFIG['isNavbar']
  66. this.sidebarFlag = window.SITE_CONFIG['isSidebar']
  67. if (!this.sidebarFlag) {
  68. this.mainContent = ''
  69. }
  70. if (!this.navbarFlag) {
  71. this.auiWrapper = 'padding-top:0px;'
  72. }
  73. },
  74. methods: {
  75. // 窗口改变大小
  76. // windowResizeHandle () {
  77. // this.$store.state.sidebarFold = document.documentElement['clientWidth'] <= 992 || false
  78. // window.addEventListener('resize', debounce(() => {
  79. // this.$store.state.sidebarFold = document.documentElement['clientWidth'] <= 992 || false
  80. // }, 150))
  81. // },
  82. // 路由, 监听
  83. routeHandle (route) {
  84. if (!route.meta.isTab) {
  85. return false
  86. }
  87. var tab = this.$store.state.contentTabs.filter(item => item.name === route.name)[0]
  88. if (!tab) {
  89. tab = {
  90. ...window.SITE_CONFIG['contentTabDefault'],
  91. ...route.meta,
  92. 'name': route.name,
  93. 'params': { ...route.params },
  94. 'query': { ...route.query }
  95. }
  96. this.$store.state.contentTabs = this.$store.state.contentTabs.concat(tab)
  97. }
  98. this.$store.state.sidebarMenuActiveName = tab.menuId
  99. this.$store.state.contentTabsActiveName = tab.name
  100. },
  101. // 获取当前管理员信息
  102. getUserInfo () {
  103. return this.$http.get('/user/info').then(({ data: res }) => {
  104. if (res.code !== 0) {
  105. return this.$message.error(res.msg)
  106. }
  107. this.$store.state.user.name = res.userInfo.displayName
  108. this.$store.state.user.organizations = res.userInfo.organizations[0].organizationName
  109. }).catch(() => {})
  110. },
  111. // 获取权限
  112. getPermissions () {
  113. return this.$http.get('/sys/button/list').then(({ data: res }) => {
  114. if (res.code !== 0) {
  115. return this.$message.error(res.msg)
  116. }
  117. this.$store.dispatch('permission', res.list)
  118. window.SITE_CONFIG['permissions'] = res.list
  119. }).catch(() => {})
  120. }
  121. }
  122. }
  123. </script>