-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.vue
66 lines (61 loc) · 1018 Bytes
/
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
<script>
export default {
onLaunch: function() {
console.log('App Launch');
},
onShow: function() {
console.log('App Show');
},
onHide: function() {
console.log('App Hide');
}
};
</script>
<style>
@import "colorui/main.css";
@import "colorui/icon.css";
/* 解决头条小程序组件内引入字体不生效的问题 */
/* #ifdef MP-TOUTIAO */
@font-face {
font-family: uniicons;
src: url('/static/uni.ttf');
}
/* #endif */
/* 公共样式 */
.interger-conent {
padding: 20rpx 40rpx 40rpx 40rpx;
background-color: #FFFFFF;
}
.interger > view {
width: 80%;
height: 200rpx;
border: 1px solid #CCCCCC;
text-align: center;
margin-left: 20rpx;
}
.inte-num {
margin-top: 30rpx;
color: #e54d42;
font-size: 50rpx;
}
.interger-title {
font-size: 35rpx;
}
.color-bule {
color: #1cbbb4;
}
.pagewrap {
padding: 20rpx;
}
.title1 {
font-size: 50rpx;
text-align: center;
}
.title2 {
font-size: 40rpx;
text-align: left;
}
.redtxt {
color: #ED1C24;
}
</style>