App.vue
1.2 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
69
70
71
72
73
74
75
76
<script>
export default {
onLaunch: function() {
console.log('App Launch')
},
onShow: function() {
console.log('App Show')
},
onHide: function() {
console.log('App Hide')
}
}
</script>
<style lang="scss">
/* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
@import "uview-ui/index.scss";
uni-page-head {
display:none !important;
}
/*每个页面公共css */
.wh100 {
width: 100%;
height: 100%;
}
.flexC {
display: flex;
justify-content: center;
align-items: center;
}
.flexD {
display: flex;
justify-content: space-between;
align-items: center;
}
.flex {
display: flex;
}
.flexA {
display: flex;
align-items: center;
}
.fw700 {
font-weight: 700;
}
.flexwrap {
display: flex;
flex-wrap: wrap;
align-items: center;
}
.flexcolum {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.serviceBtn {
opacity: 0;
position: absolute;
left: 0;
bottom: 0;
width: 120rpx;
height: 120rpx;
}
</style>
<style>
/*每个页面公共css */
</style>