App.vue
1.66 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<script>
export default {
onLaunch: function () {
},
onShow: function () {
console.log('App Show')
},
onHide: function () {
console.log('App Hide')
},
methods: {}
}
</script>
<style>
.picker-title{
background: #0069FF!important;
}
body{
font-size: 25.36upx;
background: #f3f3f3;
}
.littleTit{
overflow:hidden;
text-overflow:ellipsis;
-o-text-overflow:ellipsis;
-webkit-text-overflow:ellipsis;
-moz-text-overflow:ellipsis;
white-space:nowrap;
}
@font-face {
font-family:apples;
src: url('static/fonts/AB.ttf');
}
.picker-title:after{
border: none!important;
}
.typeBox{
height: 38.04upx;
width: 434.78upx;
line-height: 38.04upx;
display: flex;
flex-direction: row;
margin: 0 auto;
position: relative;
top: 21.73upx;
font-size: 21.73upx;
}
.typeBox>span{
flex: 1;
text-align: center;
margin-right: 36.23upx;
text-align: center;
border-radius: 16.3upx;
color: #80b4ff;
font-size: 25.36upx;
}
.activeDateType{
background: #fff;
color: #0069FF;
}
.search .content{
height: 43.47upx!important;
}
.search{
border-bottom: none!important;
}
.searchBox{
position: fixed;
top: 1.81upx;
z-index: 9;
right: 112.31upx;
width: 565.21upx;
}
.button-item{
color: #FFFFFF!important;
}
.centers{
text-align: center!important;
color: #c9c9c9;
}
/*每个页面公共css */
/*弹窗插件样式覆盖*/
.dialog-btn {
color: #0069FF;
}
.message .message-dialog.alert .message-content,
.message .message-dialog.confirm .message-content,
.message .message-dialog.prompt .message-content {
border-radius: 25.36upx !important;
}
.minirefresh-totop{
display: none;
}
</style>