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.
33 lines
549 B
33 lines
549 B
2 years ago
|
<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>
|