index.vue 545 Bytes
<template>
  <view class="empty-wrap">
    <image class="empty-bg" src='/static/images/empty/empty_bg.png'/>
    <view class="empty-text"><text>{{ text }}</text></view>
    
  </view>
</template>

<script>
export default {
  name: 'Empty',
  props: {
    text: { type: String, default: '暂无数据' }
  }
}
</script>

<style scoped lang="scss">
.empty-wrap {
  padding: 240rpx 0;
  text-align: center;
  .empty-text { 
    font-size: 26rpx; 
    color: rgba(0,0,0,0.4);
  }
  .empty-bg { 
    width: 440rpx;
    height: 282rpx;
  }
}

</style>