c-no-data.vue
1.3 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
68
69
70
71
72
73
74
75
76
77
78
<template>
<view class="c-no-data" :style="[wrapStyle]">
<view class="image">
<u-image :src="vuex_baseImgUrl+'/no_data.png'" width="480rpx" height="480rpx"></u-image>
</view>
<view class="title" :style="[topStyle]">{{ title }}</view>
</view>
</template>
<script>
export default {
name: 'c-no-data',
props: {
src: {
type: String,
default: ''
},
// 标题
title: {
type: String,
default: '暂无数据'
},
paddingTop: {
type: String,
default: "180"
},
},
data() {
return {
// vuex_baseImgUrl: this.vuex_baseImgUrl
};
},
watch: {
},
computed: {
wrapStyle() {
let style = {};
style.paddingTop = this.paddingTop + 'rpx';
return style;
},
topStyle() {
let style = {};
style.top = (Number(this.paddingTop) + 360) + 'rpx';
return style;
},
},
methods: {
}
};
</script>
<style scoped lang="scss">
.c-no-data {
width: 100%;
position: relative;
.image {
width: 480rpx;
margin: 0 auto;
}
.title {
width: 100%;
position: absolute;
top: 560rpx;
left: 0rpx;
text-align: center;
font-size: 24rpx;
line-height: 52rpx;
color: #909097;
}
}
</style>