-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathApp.vue
120 lines (96 loc) · 1.33 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
<script>
export default {
globalData: {
key: '83cc87802b794bdbb817f7a75bdfa944',
},
onLaunch: function() {
console.log('App Launch');
},
onShow: function() {
console.log('App Show');
},
onHide: function() {
// // 修复小程序主页图片缩放的问题
// uni.redirectTo({
// url: '/pages/index/index',
// });
console.log('App Hide');
uni.clearStorageSync()
}
};
</script>
<style>
.flex-row {
display: flex;
align-items: center;
}
.justify-between {
justify-content: space-between;
}
.center {
justify-content: center;
}
.text-center {
text-align: center;
}
.font-thin {
font-weight: 100;
}
.font-24 {
font-size: 24rpx;
}
.font-28 {
font-size: 28rpx;
}
.font-30 {
font-size: 30rpx;
}
.font-32 {
font-size: 32rpx;
}
.font-36 {
font-size: 36rpx;
}
.font-100 {
font-size: 100rpx;
}
.font-333 {
color: #333333;
}
.font-fff {
color: #FFFFFF;
}
.font-666 {
color: #666;
}
.font-999 {
color: #999;
}
.font-333 {
color: #333333;
}
.mg_lt_10 {
margin-left: 10rpx;
}
.mg_lt_20 {
margin-left: 20rpx;
}
.mg_lt_30 {
margin-left: 30rpx;
}
.mg_tp_10 {
margin-top: 10rpx;
}
.mg_tp_20 {
margin-top: 20rpx;
}
.mg_tp_30 {
margin-top: 30rpx;
}
.mg_tp_50 {
margin-top: 50rpx;
}
.mg_30 {
margin: 30rpx;
}
</style>