c-no-data.vue
1.1 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<template>
<view class="c-no-data" :style="[wrapStyle]" >
<view class="image">
<u-image :src="vuex_baseImgUrl && `${vuex_baseImgUrl}nodata.png`" width="260rpx" height="200rpx" :show-loading="false" :show-error="false"></u-image>
</view>
<view class="title">{{ title }}</view>
</view>
</template>
<script>
export default {
name: 'c-no-data',
props: {
src: {
type: String,
default: ''
},
// 标题
title: {
type: String,
default: '暂无数据'
},
paddingTop: {
type: String,
default: "180rpx"
},
},
data() {
return {
// vuex_baseImgUrl: this.vuex_baseImgUrl
};
},
watch: {
},
computed: {
wrapStyle() {
let style = {};
style.paddingTop = this.paddingTop
return style;
},
},
methods: {
}
};
</script>
<style scoped lang="scss">
.c-no-data {
width: 100%;
.image {
width: 260rpx;
margin: 0 auto;
}
.title {
margin: 48rpx 0 0 0;
text-align: center;
font-size: 28rpx;
line-height: 40rpx;
color: #000000;
}
}
</style>