main.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  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 ref="mainNavbar" v-if="navbarFlag"/>
  6. </div>
  7. <div class="smp_main-b" v-if="isNormalSidebar">
  8. <div class="smp_main-l" v-show="isMainMenuHaveChild">
  9. <main-sidebar v-if="sidebarFlag" ref="sidebar"/>
  10. </div>
  11. <div class="smp_main-r" :class="{'onClose':$store.state.sidebarFold,'main-no-left':!isMainMenuHaveChild}">
  12. <content-crumb v-if="isMainMenuHaveChild"></content-crumb>
  13. <main-content />
  14. </div>
  15. </div>
  16. <div class="smp_main-b" v-else>
  17. <div class="smp_main-r" :class="{'onClose':$store.state.sidebarFold,'main-no-left':true}">
  18. <basicCom :isSidebar="true"></basicCom>
  19. </div>
  20. </div>
  21. </template>
  22. <noticePop ref="noticePop"></noticePop>
  23. <taskPop ref="taskPop"></taskPop>
  24. </div>
  25. </template>
  26. <script>
  27. import MainNavbar from './main-navbar'
  28. import MainSidebar from './main-sidebar'
  29. import MainContent from './main-content'
  30. import debounce from 'lodash/debounce'
  31. import ContentCrumb from './main-content-crumb'
  32. import noticePop from './notice-pop'
  33. import taskPop from './task-pop'
  34. import basicCom from '@/views/modules/demo/basicComponent/basic-com'
  35. import { clearLoginInfo } from '@/utils'
  36. export default {
  37. provide () {
  38. return {
  39. // 刷新
  40. refresh () {
  41. this.$store.state.contentIsNeedRefresh = true
  42. this.$nextTick(() => {
  43. this.$store.state.contentIsNeedRefresh = false
  44. })
  45. }
  46. }
  47. },
  48. data () {
  49. return {
  50. loading: true,
  51. isNormalSidebar: true,
  52. navbarFlag: false,
  53. sidebarFlag: false,
  54. mainContent: 'aui-content__wrapper',
  55. auiWrapper: '',
  56. isMainMenuHaveChild: true,
  57. menuDataAll: []
  58. }
  59. },
  60. components: {
  61. MainNavbar,
  62. MainSidebar,
  63. MainContent,
  64. ContentCrumb,
  65. basicCom,
  66. noticePop,
  67. taskPop
  68. },
  69. watch: {
  70. $route: 'routeHandle'
  71. },
  72. created () {
  73. // this.windowResizeHandle()
  74. // this.routeHandle(this.$route)
  75. Promise.all([
  76. this.getUserInfo(),
  77. this.getPermissions()
  78. ]).then(() => {
  79. this.loading = false
  80. })
  81. this.loading = false
  82. this.navbarFlag = window.SITE_CONFIG['isNavbar']
  83. this.sidebarFlag = window.SITE_CONFIG['isSidebar']
  84. if (!this.sidebarFlag) {
  85. this.mainContent = ''
  86. }
  87. if (!this.navbarFlag) {
  88. this.auiWrapper = 'padding-top:0px;'
  89. }
  90. if (this.$route.name === 'JCZJ') {
  91. this.gotoWaterfallSidebar()
  92. }
  93. },
  94. mounted () {
  95. this.getMenuList()
  96. this.monitorChild()
  97. },
  98. methods: {
  99. // 窗口改变大小
  100. // windowResizeHandle () {
  101. // this.$store.state.sidebarFold = document.documentElement['clientWidth'] <= 992 || false
  102. // window.addEventListener('resize', debounce(() => {
  103. // this.$store.state.sidebarFold = document.documentElement['clientWidth'] <= 992 || false
  104. // }, 150))
  105. // },
  106. getMenuList () {
  107. this.menuDataAll = window.SITE_CONFIG['menuList']
  108. },
  109. checkMenu (origin) {
  110. let arr = this.menuDataAll.filter((e) => {
  111. if (e.url) {
  112. return e.url.indexOf(origin) > -1
  113. } else {
  114. return false
  115. }
  116. })
  117. return arr.length
  118. },
  119. tokenInvalid (config) {
  120. console.log(config)
  121. clearLoginInfo()
  122. this.$router.push({ name: 'login' })
  123. },
  124. isMyEvent (name, obj) {
  125. let isHas = false
  126. Object.keys(obj).forEach((e) => {
  127. if (e === name) {
  128. isHas = true
  129. }
  130. })
  131. return isHas
  132. },
  133. // 跨域监听
  134. monitorChild () {
  135. let _this = this
  136. let eventObj = {
  137. tokenInvalid: _this.tokenInvalid.bind(this)
  138. }
  139. window.addEventListener('message', function (e) {
  140. if (!e.data.event || !_this.isMyEvent(e.data.event, eventObj)) {
  141. console.log('事件错误')
  142. return
  143. }
  144. if (_this.checkMenu(e.origin)) {
  145. eventObj[e.data.event] && eventObj[e.data.event](e.data.config)
  146. } else {
  147. console.log('源头错误')
  148. }
  149. console.log(e, window.location.origin)
  150. // e.data.cbk()
  151. })
  152. },
  153. // 显示通知弹窗
  154. showNotice () {
  155. this.$refs.noticePop.showPop()
  156. },
  157. // 显示通知弹窗
  158. showTask () {
  159. this.$refs.taskPop.showPop()
  160. },
  161. // 切换导航
  162. gotoNormalSidebar () {
  163. this.isNormalSidebar = true
  164. this.$nextTick(() => {
  165. this.$refs.sidebar.remedyMenuNoChange()
  166. })
  167. },
  168. gotoWaterfallSidebar () {
  169. this.isNormalSidebar = false
  170. },
  171. // 路由, 监听
  172. routeHandle (route) {
  173. if (route.name === 'JCZJ') {
  174. this.isNormalSidebar = true
  175. this.$nextTick(() => {
  176. this.gotoWaterfallSidebar()
  177. })
  178. } else {
  179. !this.isNormalSidebar && this.gotoNormalSidebar()
  180. }
  181. // !this.isNormalSidebar && this.gotoNormalSidebar()
  182. if (!route.meta.isTab) {
  183. return false
  184. }
  185. var tab = this.$store.state.contentTabs.filter(item => item.name === route.name)[0]
  186. if (!tab) {
  187. tab = {
  188. ...window.SITE_CONFIG['contentTabDefault'],
  189. ...route.meta,
  190. 'name': route.name,
  191. 'params': { ...route.params },
  192. 'query': { ...route.query }
  193. }
  194. this.$store.state.contentTabs = this.$store.state.contentTabs.concat(tab)
  195. }
  196. this.$store.state.sidebarMenuActiveName = tab.menuId
  197. this.$store.state.contentTabsActiveName = tab.name
  198. },
  199. // 获取当前管理员信息
  200. getUserInfo () {
  201. return this.$http.get('/idaas/sso/user/info').then(({ data: res }) => {
  202. if (res.code !== 0) {
  203. return this.$message.error(res.msg)
  204. }
  205. this.$store.state.user.name = res.userInfo.displayName
  206. this.$store.state.user.organizations = res.userInfo.organizations[0].organizationName
  207. }).catch(() => {})
  208. },
  209. // 获取权限
  210. getPermissions () {
  211. return this.$http.get('/idaas/ps/user/buttonList').then(({ data: res }) => {
  212. if (res.code !== 0) {
  213. return this.$message.error(res.msg)
  214. }
  215. this.$store.dispatch('permission', res.buttonList)
  216. window.SITE_CONFIG['permissions'] = res.buttonList
  217. }).catch(() => {})
  218. }
  219. }
  220. }
  221. </script>