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
| <template>
| <view>
|
| <image src="https://hmy-flower.oss-cn-shanghai.aliyuncs.com/5e/5e01669de7ec4500b41711b64a7ca0fcnodata.png" class="img-nodata"></image>
| <!-- <image src="../static/common/nodata.png" class="img-nodata"></image> -->
| <view class="txt-nodata">尽力了,没有找到数据</view>
| </view>
| </template>
|
| <script>
| export default {
| name: "no-data",
| data() {
| return {
|
| };
| }
| }
| </script>
|
| <style lang="scss" scoped>
| .img-nodata {
| width: 234rpx;
| height: 177rpx;
| display: block;
| margin: 0 auto;
| margin-top: 80rpx;
| }
|
| .txt-nodata {
| margin-top: 40rpx;
| font-weight: 400;
| font-size: 28rpx;
| color: #666666;
| line-height: 40rpx;
| text-align: center;
| margin-bottom: 80rpx;
| }
| </style>
|
|