login.vue
1.25 KB
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
<template lang="html">
<div id="login" style="height:100%;">
<x-header
:left-options="{showBack: false}"
:title="title">
</x-header>
<router-view style="margin-top: 3rem"></router-view>
</div>
</template>
<script>
import { XHeader } from 'vux'
import { mapState } from 'vuex'
export default {
components: { XHeader },
data () {
return {
isIndex: true,
showMore: true
}
},
computed: {
...mapState({
title: state => state.title
})
},
watch: {
$route: 'fetchData'
},
mounted () {
},
methods: {
fetchData () {
if (this.$route.meta.isIndex) {
this.isIndex = true
} else {
this.isIndex = false
}
}
}
}
</script>
<style lang="less">
@import '~vux/src/styles/reset.less';
@import '~vux/src/styles/1px.less';
@import '~vux/src/styles/close.less';
html, body {
font-family: '微软雅黑', Microsoft YaHei;
height: 100%;
width: 100%;
overflow-x: hidden;
background-color: #F0EFF5;
#login {
.vux-header {
width: 100%;
position: absolute;
left: 0;
top: 0;
z-index: 100;
background: #333;
.vux-header-title {
color: #fff;
}
}
}
}
</style>