empty.vue 500 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <view class="empty-box">
  3. <image :src="icon" 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. },icon:{
  16. type:String,
  17. default:"/static/img/common/empty.png"
  18. }
  19. },
  20. data(){
  21. return {
  22. }
  23. }
  24. }
  25. </script>
  26. <style>
  27. .empty-box{
  28. padding: 60rpx;
  29. text-align: center;
  30. }
  31. </style>