1
xuxy
2024-06-26 d1a2b894e9cf5e4f43b65d004dfd8a4ab92551a1
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
<template>
    <view>
        <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>