index.vue 664 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <view class="emptyBox" :style="'margin-top:'+marginTop+'px'">
  3. <img src="https://guess-shop.oss-cn-beijing.aliyuncs.com/static/online/img51.png" alt="">
  4. <view>{{text}}</view>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. data () {
  10. return {
  11. }
  12. },
  13. props: {
  14. marginTop: {
  15. type: Number,
  16. default: 50
  17. },
  18. text: {
  19. type: String,
  20. default: '列表为空'
  21. }
  22. },
  23. }
  24. </script>
  25. <style lang='scss' scoped>
  26. .emptyBox {
  27. text-align: center;
  28. margin-top: 50px;
  29. image {
  30. width: 465rpx;
  31. height: 253rpx;
  32. }
  33. > view {
  34. color: #c0c4cc;
  35. font-size: 28rpx;
  36. margin-top: 30rpx;
  37. }
  38. }
  39. </style>