empty.vue 440 B

12345678910111213141516171819202122232425262728293031
  1. <template>
  2. <view class="empty-box">
  3. <image :src="statics.emptyImg" style="width: 296rpx; height: 296rpx;"></image>
  4. <view class="ft14 cl-notice mt20">
  5. {{title}}
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default{
  11. props:{
  12. title:{
  13. type:String,
  14. default:'暂无普通用户优惠券',
  15. }
  16. },
  17. data(){
  18. return {
  19. }
  20. }
  21. }
  22. </script>
  23. <style>
  24. .empty-box{
  25. padding: 60rpx;
  26. text-align: center;
  27. }
  28. </style>