1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
| <template>
| <section class="app-main">
| <transition name="fade-transform" mode="out-in">
| <keep-alive :include="cachedViews">
| <router-view :key="key" />
| </keep-alive>
| </transition>
| <!-- <div class="footers">
| <el-link v-for="item in links" :key="item.key" :href="item.href" target="_blank" class="mr15 mb20">{{item.title}}</el-link>
| <div class="title mb15" v-text="copyright"></div>
| </div> -->
| </section>
| </template>
|
| <script>
| export default {
| name: "AppMain",
| data() {
| return {
| links: [
| {
| title: "官网",
| key: "1",
| href: "https://www.CMS.com",
| blankTarget: true,
| },
| {
| title: "社区",
| key: "2",
| href: "https://q.CMS.net/?categoryId=122&sequence=0",
| blankTarget: true,
| },
| {
| title: "文档",
| key: "3",
| href: "https://help.CMS.net/CMS_java/1748037",
| blankTarget: true,
| },
| ],
| copyright: "Copyright © 2025 有限公司",
| };
| },
| computed: {
| cachedViews() {
| return this.$store.state.tagsView.cachedViews;
| },
| key() {
| return this.$route.path;
| },
| },
| };
| </script>
|
| <style lang="scss" scoped>
| .footers {
| text-align: center;
| font-size: 14px;
| color: #808695;
| .title {
| font-size: 14px;
| color: #808695;
| }
| }
| .app-main {
| /* 50= navbar 50 */
| min-height: calc(100vh - 50px);
| width: 100%;
| position: relative;
| overflow: hidden;
| }
|
| .fixed-header + .app-main {
| padding-top: 50px;
| }
|
| .hasTagsView {
| .app-main {
| background: #f5f5f5;
| /* 84 = navbar + tags-view = 50 + 34 */
| min-height: calc(100vh - 50px);
| overflow-y: scroll;
| }
|
| .fixed-header + .app-main {
| padding-top: 50px;
| }
| }
| .el-popup-parent--hidden {
| .fixed-header {
| padding-right: 15px;
| }
| }
| </style>
|
|