<template>
<view class="text-center" style="margin-top: 100rpx;">
<image style="width: 180rpx;height: 180rpx;" src="../../static/nodata.png" mode=""></image>
<view class="padding-top">
{{title}}
</view>
<view class="text-sm text-gray9 padding-top-xs">
{{subtitle}}
</view>
</view>
</template>
<script>
export default {
name: "noData",
props: {
title: {
type: String,
default: ""
},
subtitle: {
type: String,
default: ""
},
},
data(){
return{
}
},
methods:{
}
}
</script>
<style>
</style>
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
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