中品云站
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

32 lines
549 B

<template>
<!-- -->
<view class="img-box padding-lg margin-lg text-center">
<view class="bg-img margin radius flex align-center" :style="'background-image: url('+mainURL+'kong.png)'">
</view>
<text>这里没有相关记录哦~</text>
</view>
</template>
<script>
export default {
name: 'Empty',
data() {
return {
mainURL: this.global.mainURL,
}
},
}
</script>
<style scoped>
/* 空 */
.img-box {
color: rgb(148, 147, 147);
font-size: 14px;
}
.bg-img{
min-height: 450rpx;
min-width: 200upx;
}
</style>