123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- <template>
- <div :style="auiWrapper" v-loading.fullscreen.lock="loading" :element-loading-text="$t('loading')" class="aui-wrapper all-main-wraper">
- <template v-if="!loading">
- <div class="smp_main-t">
- <main-navbar ref="mainNavbar" v-if="navbarFlag"/>
- </div>
- <div class="smp_main-b" v-if="isNormalSidebar">
- <div class="smp_main-l" v-show="isMainMenuHaveChild">
- <main-sidebar v-if="sidebarFlag" ref="sidebar"/>
- </div>
- <div class="smp_main-r" :class="{'onClose':$store.state.sidebarFold,'main-no-left':!isMainMenuHaveChild}">
- <content-crumb v-if="isMainMenuHaveChild"></content-crumb>
- <main-content />
- </div>
- </div>
- <div class="smp_main-b" v-else>
- <div class="smp_main-r" :class="{'onClose':$store.state.sidebarFold,'main-no-left':true}">
- <basicCom :isSidebar="true"></basicCom>
- </div>
- </div>
- </template>
- <noticePop ref="noticePop"></noticePop>
- <taskPop ref="taskPop"></taskPop>
- </div>
- </template>
- <script>
- import MainNavbar from './main-navbar'
- import MainSidebar from './main-sidebar'
- import MainContent from './main-content'
- import debounce from 'lodash/debounce'
- import ContentCrumb from './main-content-crumb'
- import noticePop from './notice-pop'
- import taskPop from './task-pop'
- import basicCom from '@/views/modules/demo/basicComponent/basic-com'
- import { clearLoginInfo } from '@/utils'
- export default {
- provide () {
- return {
- // 刷新
- refresh () {
- this.$store.state.contentIsNeedRefresh = true
- this.$nextTick(() => {
- this.$store.state.contentIsNeedRefresh = false
- })
- }
- }
- },
- data () {
- return {
- loading: true,
- isNormalSidebar: true,
- navbarFlag: false,
- sidebarFlag: false,
- mainContent: 'aui-content__wrapper',
- auiWrapper: '',
- isMainMenuHaveChild: true,
- menuDataAll: []
- }
- },
- components: {
- MainNavbar,
- MainSidebar,
- MainContent,
- ContentCrumb,
- basicCom,
- noticePop,
- taskPop
- },
- watch: {
- $route: 'routeHandle'
- },
- created () {
- // this.windowResizeHandle()
- // this.routeHandle(this.$route)
- Promise.all([
- this.getUserInfo(),
- this.getPermissions()
- ]).then(() => {
- this.loading = false
- })
- this.loading = false
- this.navbarFlag = window.SITE_CONFIG['isNavbar']
- this.sidebarFlag = window.SITE_CONFIG['isSidebar']
- if (!this.sidebarFlag) {
- this.mainContent = ''
- }
- if (!this.navbarFlag) {
- this.auiWrapper = 'padding-top:0px;'
- }
- if (this.$route.name === 'JCZJ') {
- this.gotoWaterfallSidebar()
- }
- },
- mounted () {
- this.getMenuList()
- this.monitorChild()
- },
- methods: {
- // 窗口改变大小
- // windowResizeHandle () {
- // this.$store.state.sidebarFold = document.documentElement['clientWidth'] <= 992 || false
- // window.addEventListener('resize', debounce(() => {
- // this.$store.state.sidebarFold = document.documentElement['clientWidth'] <= 992 || false
- // }, 150))
- // },
- getMenuList () {
- this.menuDataAll = window.SITE_CONFIG['menuList']
- },
- checkMenu (origin) {
- let arr = this.menuDataAll.filter((e) => {
- if (e.url) {
- return e.url.indexOf(origin) > -1
- } else {
- return false
- }
- })
- return arr.length
- },
- tokenInvalid (config) {
- console.log(config)
- clearLoginInfo()
- this.$router.push({ name: 'login' })
- },
- isMyEvent (name, obj) {
- let isHas = false
- Object.keys(obj).forEach((e) => {
- if (e === name) {
- isHas = true
- }
- })
- return isHas
- },
- // 跨域监听
- monitorChild () {
- let _this = this
- let eventObj = {
- tokenInvalid: _this.tokenInvalid.bind(this)
- }
- window.addEventListener('message', function (e) {
- if (!e.data.event || !_this.isMyEvent(e.data.event, eventObj)) {
- console.log('事件错误')
- return
- }
- if (_this.checkMenu(e.origin)) {
- eventObj[e.data.event] && eventObj[e.data.event](e.data.config)
- } else {
- console.log('源头错误')
- }
- console.log(e, window.location.origin)
- // e.data.cbk()
- })
- },
- // 显示通知弹窗
- showNotice () {
- this.$refs.noticePop.showPop()
- },
- // 显示通知弹窗
- showTask () {
- this.$refs.taskPop.showPop()
- },
- // 切换导航
- gotoNormalSidebar () {
- this.isNormalSidebar = true
- this.$nextTick(() => {
- this.$refs.sidebar.remedyMenuNoChange()
- })
- },
- gotoWaterfallSidebar () {
- this.isNormalSidebar = false
- },
- // 路由, 监听
- routeHandle (route) {
- if (route.name === 'JCZJ') {
- this.isNormalSidebar = true
- this.$nextTick(() => {
- this.gotoWaterfallSidebar()
- })
- } else {
- !this.isNormalSidebar && this.gotoNormalSidebar()
- }
- // !this.isNormalSidebar && this.gotoNormalSidebar()
- if (!route.meta.isTab) {
- return false
- }
- var tab = this.$store.state.contentTabs.filter(item => item.name === route.name)[0]
- if (!tab) {
- tab = {
- ...window.SITE_CONFIG['contentTabDefault'],
- ...route.meta,
- 'name': route.name,
- 'params': { ...route.params },
- 'query': { ...route.query }
- }
- this.$store.state.contentTabs = this.$store.state.contentTabs.concat(tab)
- }
- this.$store.state.sidebarMenuActiveName = tab.menuId
- this.$store.state.contentTabsActiveName = tab.name
- },
- // 获取当前管理员信息
- getUserInfo () {
- return this.$http.get('/idaas/sso/user/info').then(({ data: res }) => {
- if (res.code !== 0) {
- return this.$message.error(res.msg)
- }
- this.$store.state.user.name = res.userInfo.displayName
- this.$store.state.user.organizations = res.userInfo.organizations[0].organizationName
- }).catch(() => {})
- },
- // 获取权限
- getPermissions () {
- return this.$http.get('/idaas/ps/user/buttonList').then(({ data: res }) => {
- if (res.code !== 0) {
- return this.$message.error(res.msg)
- }
- this.$store.dispatch('permission', res.buttonList)
- window.SITE_CONFIG['permissions'] = res.buttonList
- }).catch(() => {})
- }
- }
- }
- </script>
|