<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>