-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathApp.vue
141 lines (139 loc) · 2.68 KB
/
App.vue
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<template>
<v-app id="app" :class="bgcClass">
<jse-header v-show="!hideHAF" />
<section class="app-content" :class="{'app-full-screen':hideHAF}">
<router-view :key="routerKey" />
<jse-snackbar />
</section>
<jse-footer v-show="!hideHAF" />
</v-app>
</template>
<script>
import { mapMutations } from 'vuex'
import Header from '@components/header.vue'
import Footer from '@components/footer.vue'
import Snackbar from '@components/snackbar.vue'
export default {
name: 'App',
data() {
return {
bgcClass: '',
routerKey: 0,
}
},
provide() {
return {
changeRouterKey: () => {
this.routerKey++
},
}
},
mounted() {
this.setBgc()
},
computed: {
path() {
return this.$route.path.replace('/', '') || 'home'
},
hideHAF() {
return this.$route.meta.hideHAF
},
},
watch: {
path() {
this.setBgc()
},
},
methods: {
...mapMutations(['setLoginInfo', 'setLoginState']),
setBgc() {
// 根据路由更换不同的背景
this.bgcClass = ''
const path = this.path
const list = ['home', 'features', 'feedback']
if (list.includes(path)) {
this.bgcClass = `bgc-animation bgc-before ${path}-bgc`
}
},
},
components: {
'jse-header': Header,
'jse-footer': Footer,
'jse-snackbar': Snackbar,
},
}
</script>
<style lang="scss">
#app {
width: 100%;
color: $light-2;
font-family: $font;
background-color: $deep-5;
position: relative;
background-attachment: fixed;
@include setTransition(all, 0.3s, ease);
.app-content {
min-height: calc(100vh - 70px);
}
}
.app-full-screen {
height: 100% !important;
}
.bgc-animation {
background-position: 50% 0;
background-size: 200% !important;
// @include animation(background-fade, 0.5s, 0.3s, ease, forwards);
}
.bgc-before {
&::before {
content: '';
width: 100%;
height: 100%;
position: absolute;
}
}
.home-bgc {
background-image: linear-gradient(
135deg,
#2050a1 -50px,
#1c347c 20%,
#1a1925 45%,
$deep-6
) !important;
&:before {
background-color: rgba(25, 128, 255, 0.1);
}
}
.features-bgc {
background-image: linear-gradient(
135deg,
$deep-1 0,
$deep-2 15%,
$deep-4 35%
) !important;
&:before {
background-color: rgba(60, 60, 60, 0.1);
}
}
.feedback-bgc {
background-image: linear-gradient(
135deg,
$pink-1 0,
$deep-2 15%,
$deep-5 35%
) !important;
&:before {
background-color: rgba(194, 24, 91, 0.1);
}
}
@include screenLG {
.app-content {
min-height: calc(100vh - 70px);
}
}
@include screenXL {
.app-content {
min-height: calc(100vh - 70px);
}
}
</style>