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
| <template>
| <!-- 专项分析 -->
| <view class="container">
| <view class="content-box font-14 mt-10">
| <view class="content-box-row flex align-center justify-between">
| <text>12月11日</text>
| <text>¥1,712</text>
| </view>
| <view class="content-box-row flex align-center justify-between">
| <text>12月12日</text>
| <text>¥1,712</text>
| </view>
| <view class="content-box-row flex align-center justify-between">
| <text>12月13日</text>
| <text>¥1,712</text>
| </view>
| <view class="content-box-row flex align-center justify-between">
| <text>12月14日</text>
| <text>¥1,712</text>
| </view>
| </view>
| </view>
| </template>
|
| <script>
| </script>
|
| <style>
| page{
| background: #F6F6F8;
| }
| .container{
| padding: 0 10px;
| }
| .content-box{
| border: 1px solid #EDEAF4;
| border-radius: 4px;
| background: #FFFFFF;
| padding: 0 10px;
| }
| .content-box-row{
| border-bottom: 1px solid #EDEAF4;
| padding: 10px 0;
| }
| .content-box-row:nth-last-child(1){
| border: 0;
| }
| </style>
|
|