| | |
| | | <section class="app-main">
|
| | | <transition name="fade-transform" mode="out-in">
|
| | | <keep-alive :include="cachedViews">
|
| | | <router-view :key="key" />
|
| | | <router-view v-if="!$route.meta.link" :key="key" />
|
| | | </keep-alive>
|
| | | </transition>
|
| | | <iframe-toggle />
|
| | | <copyright />
|
| | | </section>
|
| | | </template>
|
| | |
|
| | | <script>
|
| | | import copyright from "./Copyright/index"
|
| | | import iframeToggle from "./IframeToggle/index"
|
| | |
|
| | | export default {
|
| | | name: 'AppMain',
|
| | | components: { iframeToggle, copyright },
|
| | | computed: {
|
| | | cachedViews() {
|
| | | return this.$store.state.tagsView.cachedViews
|
| | | },
|
| | | key() {
|
| | | return this.$route.path
|
| | | }
|
| | | },
|
| | | watch: {
|
| | | $route() {
|
| | | this.addIframe()
|
| | | }
|
| | | },
|
| | | mounted() {
|
| | | this.addIframe()
|
| | | },
|
| | | methods: {
|
| | | addIframe() {
|
| | | const { name } = this.$route
|
| | | if (name && this.$route.meta.link) {
|
| | | this.$store.dispatch('tagsView/addIframeView', this.$route)
|
| | | }
|
| | | }
|
| | | }
|
| | | }
|
| | |
| | | overflow: hidden;
|
| | | }
|
| | |
|
| | | .fixed-header+.app-main {
|
| | | .app-main:has(.copyright) {
|
| | | padding-bottom: 36px;
|
| | | }
|
| | |
|
| | | .fixed-header + .app-main {
|
| | | padding-top: 50px;
|
| | | }
|
| | |
|
| | |
| | | min-height: calc(100vh - 84px);
|
| | | }
|
| | |
|
| | | .fixed-header+.app-main {
|
| | | .fixed-header + .app-main {
|
| | | padding-top: 84px;
|
| | | }
|
| | | }
|
| | |
| | | // fix css style bug in open el-dialog
|
| | | .el-popup-parent--hidden {
|
| | | .fixed-header {
|
| | | padding-right: 15px;
|
| | | padding-right: 6px;
|
| | | }
|
| | | }
|
| | |
|
| | | ::-webkit-scrollbar {
|
| | | width: 6px;
|
| | | height: 6px;
|
| | | }
|
| | |
|
| | | ::-webkit-scrollbar-track {
|
| | | background-color: #f1f1f1;
|
| | | }
|
| | |
|
| | | ::-webkit-scrollbar-thumb {
|
| | | background-color: #c0c0c0;
|
| | | border-radius: 3px;
|
| | | }
|
| | | </style>
|