zhaoxiaoqiang
2023-08-25 9583630b27fdd2f2566995a78d8238ce504f3523
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
<!--
 * @Author: your name
 * @Date: 2021-09-13 14:28:39
 * @LastEditTime: 2023-05-04 17:13:46
 * @LastEditors: zxq
 * @Description: In User Settings Edit
 * @FilePath: \qyp_finlean_plat\src\layout\components\AppMain.vue
-->
<template>
  <section :class="key=='/'?'set-app-main':'app-main'">
    <transition name="fade-transform" mode="out-in">
      <keep-alive :include="cachedViews">
        <router-view :key="key" />
      </keep-alive>
    </transition>
  </section>
</template>
 
<script>
export default {
  name: 'AppMain',
  computed: {
    cachedViews() {
      return this.$store.state.tagsView.cachedViews
    },
    key() {
      return this.$route.path
    }
  },
  watch:{
 
  },
  created(){
  }
}
</script>
 
<style lang="scss" scoped>
.app-main {
  height: calc(100vh - 50px);
  padding: 16px;
  box-sizing: border-box;
  width: 100%;
  position: relative;
  overflow-y:scroll;
  position: relative;
}
.set-app-main {
  height: calc(100vh - 50px);
  padding: 0px;
  box-sizing: border-box;
  width: 100%;
  position: relative;
  overflow-y:hidden;
  position: relative;
}
.app-footer{
    height: 72px;
    width: 100%;
    position: absolute;
    /* bottom: 0; */
    left: 0;
    background-color: #fff;
}
.fixed-header+.app-main {
  padding-top: 50px;
}
 
.hasTagsView {
  .app-main {
    /* 84 = navbar + tags-view = 50 + 34 */
    min-height: calc(100vh - 84px);
  }
 
  .fixed-header+.app-main {
    padding-top: 84px;
  }
}
</style>
 
<style lang="scss">
.el-popup-parent--hidden {
  .fixed-header {
    padding-right: 15px;
  }
}
</style>