1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| <template>
| <view class="no-record">
| <image src="../../static/images/no-data.png" mode="widthFix"></image>
| <text>暂无数据</text>
| </view>
| </template>
|
| <script>
| </script>
|
| <style>
| .no-record{
| text-align: center;
| font-size: 14px;
| color: rgb(171, 177, 204);
| margin-top: 30%;
| }
| .no-record image{
| display: block;
| width: 170px;
| margin: 0 auto 10px;
| }
| </style>
|
|