index.vue 2.69 KB
<template>
  <div
    v-if="routerView"
    class="app-main-container"
    :class="{ 'index-container': $route.meta.title === '首页' }"
  >
    <transition mode="out-in" name="fade-transform">
      <keep-alive :include="keepAliveApps">
        <router-view :key="key" class="app-main-height" />
      </keep-alive>
    </transition>
    <!-- <footer v-show="footerCopyright" class="footer-copyright">
      Copyright
      <ht-icon name="copyright" scale="1.15" />
      宏天软件 {{ fullYear }}
    </footer> -->
  </div>
</template>

<script>
  import { mapActions, mapGetters } from 'vuex'
  import { copyright, footerCopyright, keepAliveMaxNum, title } from '@/config'

  export default {
    name: 'HtAppMain',
    data() {
      return {
        show: false,
        fullYear: new Date().getFullYear(),
        copyright,
        title,
        keepAliveMaxNum,
        routerView: true,
        footerCopyright,
        keepAliveApps: [],
      }
    },
    computed: {
      ...mapGetters({
        visitedRoutes: 'tabsBar/visitedRoutes',
        device: 'settings/device',
        account: 'user/account',
      }),
      cachedRoutes() {
        const cachedRoutesArr = []
        this.visitedRoutes.forEach((item) => {
          if (!item.meta.noKeepAlive) {
            cachedRoutesArr.push(item.name)
          }
        })
        return cachedRoutesArr
      },
      key() {
        return this.$route.fullPath
      },
    },
    watch: {
      $route: {
        handler(route) {
          if ('mobile' === this.device) this.foldSideBar()
        },
        immediate: true,
      },
    },
    created() {
      //重载所有路由
      this.$baseEventBus.$on('reload-router-view', () => {
        this.routerView = false
        setTimeout(() => {
          this.routerView = true
        }, 100)
      })
      if (localStorage.getItem(`keepalive_${this.account}`)) {
        const keepaliveRouteList = JSON.parse(
          localStorage.getItem(`keepalive_${this.account}`)
        )
        if (keepaliveRouteList && keepaliveRouteList.length) {
          this.keepAliveApps = keepaliveRouteList.map((item) => item.name)
        }
      }
    },
    methods: {
      ...mapActions({
        foldSideBar: 'settings/foldSideBar',
      }),
    },
  }
</script>

<style lang="scss" scoped>
  .app-main-container {
    position: relative;
    width: 100%;
    .app-keel {
      margin: $base-padding;
    }
    .app-main-height {
      min-height: $base-app-main-height;
    }

    .footer-copyright {
      min-height: 55px;
      line-height: 55px;
      color: rgba(0, 0, 0, 0.45);
      text-align: center;
      border-top: 1px dashed $base-border-color;
    }
  }
  .index-container {
    // overflow-y: scroll;
  }
</style>