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
|
| .base-wrapper {
| background-color: #f5f5f5;
| width: 100%;
| height: 100vh;
| overflow: hidden;
| /* 防止底部区域滚动 */
| display: flex;
| flex-direction: column;
| }
|
|
| .list-item {
| background-color: #fff;
| margin-top: 10rpx;
| display: flex;
| justify-content: space-between;
| align-items: center;
| padding-left: 30rpx;
| padding-right: 30rpx;
| padding-top: 40rpx;
| padding-bottom: 40rpx;
| margin-left: 20rpx;
| margin-right: 20rpx;
| }
|
| .scroll-view {
| margin-top: 30rpx;
| flex: 1;
| overflow-y: auto;
| /* 允许垂直滚动 */
| z-index: 0;
| }
|
| .order-right {
| display: flex;
| flex-direction: column;
| align-items: center;
| }
|
| .money-wrapper text {
| font-size: 50rpx;
| color: #1890FF;
| }
|
| .order-state {
| font-size: 30rpx;
| color: #000000;
| opacity: 0.7;
|
| }
| .order-code text{
| font-size: 35rpx;
| color: #000000;
| }
| .order-time{
| font-size: 35rpx;
| color: #000000;
| opacity: 0.7;
| }
|
|