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
| <template>
|
|
| <view class="wrap flex j-c-s-b a-i-c">
| <view class="btn">
| 场所采集
| </view>
| <view class="btn">
| 场所检查
| </view>
| </view>
|
| </template>
|
| <script>
| </script>
|
| <style>
| .wrap {
| padding: 0 20rpx;
| margin-top: 30%;
| }
|
| .btn {
| width: 40%;
| height: 60rpx;
| background: linear-gradient(163deg, #01BDFC 0%, #017BFC 100%);
| font-size: 28rpx;
| color: #fff;
| text-align: center;
| }
| </style>
|
|