| 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
 | | /* pages/valveList/valveList.wxss */ |  | .container { |  |   display: flex; |  |   flex-direction: column; |  |   height: 100vh; |  |   width: 100%; |  |   padding-left: 20rpx; |  |   padding-right: 20rpx; |  |   padding-top: 5rpx; |  |   padding-bottom: 5rpx; |  |   background-color: #fff; |  | } |  |   |  | .list-item { |  |   display: flex; |  |   flex-direction: column; |  |   background-color: #1890FF; |  |   margin-top: 30rpx; |  |   margin-left: 30rpx; |  |   margin-right: 30rpx; |  |   margin-bottom: 30rpx; |  |   padding: 20rpx; |  |   border-radius: 15rpx; |  | } |  |   |  | .item-text { |  |   color: #fff; |  |   font-size: 35rpx; |  | } |  |   |  | .item-time { |  |   display: flex; |  |   justify-content: space-between; |  |   align-items: flex-end; |  | } |  |   |  | .item-morny { |  |   color: #FFFF00; |  |   font-size: 50rpx; |  |   font-weight: bold; |  | } |  |   |  | .tab { |  |   font-size: 35rpx; |  |   padding: 10px; |  |   cursor: pointer; |  |   position: relative; |  |   width: 50%; |  |   /* Tabs 平分整个横向屏幕 */ |  |   text-align: center; |  |   /* 文字居中 */ |  | } |  |   |  | .tabs { |  |   display: flex; |  |   justify-content: space-around; |  |   position: relative; |  |   width: 100%; |  |   border-bottom: 1px solid #eee; |  |   /* Tabs 占满整个横向屏幕 */ |  | } |  |   |  | .list-container { |  |   flex: 1; |  |   width: 100%; |  |   display: flex; |  |   flex-direction: column; |  | } |  |   |  | .noMore-View { |  |   display: flex; |  |   flex-direction: column; |  |   justify-content: center; |  |   align-items: center; |  |   height: 100%; |  |   padding: 40rpx 0; |  |   width: 100%; |  |   text-align: center; |  | } |  |   |  | .noMore-img { |  |   width: 200rpx; |  |   height: 200rpx; |  |   margin-bottom: 20rpx; |  | } |  |   |  | .noMore-text { |  |   font-size: 32rpx; |  |   color: #999; |  | } |  |   |  | .indicator { |  |   width: 100%; |  |   height: 3px; |  |   background-color: #1890FF; |  |   position: absolute; |  |   bottom: 0; |  |   left: 0; |  |   transform: translateX(0); |  |   /* 初始化位置 */ |  | } |  |   |  | .no-more-data { |  |   display: flex; |  |   justify-content: center; |  |   align-items: center; |  |   padding: 20rpx 0; |  |   color: #999; |  |   font-size: 28rpx; |  |   width: 100%; |  |   text-align: center; |  | } | 
 |