Files
MP-XiaoXing/components/Empty.vue

51 lines
824 B
Vue
Raw Normal View History

2022-08-08 09:20:48 +08:00
<template>
<!-- -->
<div class="img-box">
<div class="img" :class="marginTopExtra?'margin-extra':''">
<image :src="baseUrl+'empty.png'" mode="widthFix"></image>
</div>
2022-12-06 18:14:56 +08:00
<p :style="{padding: contentTitle?'0 50px':''}">{{contentTitle?contentTitle:'这里没有相关记录哦~'}}</p>
2022-08-08 09:20:48 +08:00
</div>
</template>
<script>
export default {
name: 'Empty',
props:{
marginTopExtra:{
type:Boolean,
default: true
2022-12-06 18:14:56 +08:00
},
contentTitle:{
type:String,
default:''
2022-08-08 09:20:48 +08:00
}
},
data() {
return {
baseUrl: this.global.imgURL
2022-12-06 18:14:56 +08:00
2022-08-08 09:20:48 +08:00
}
}
}
</script>
<style scoped>
/* 空 */
.img-box {
width: 100%;
text-align: center;
color: rgb(148, 147, 147);
font-size: 14px;
padding-bottom: 20%;
}
.img {
width: 500upx;
margin: 0 auto 3%;
}
.margin-extra{
margin-top: 30%;
}
</style>