empty.vue 659 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <view class="empty-tips flex-col align-center justify-center" :style="{marginTop:marginTop}">
  3. <image src="/static/empty.png" mode="aspectFill" class="ic"></image>
  4. <text class="txt">{{txt}}</text>
  5. </view>
  6. </template>
  7. <script>
  8. export default {
  9. props: {
  10. txt:{
  11. type: String,
  12. default: '暂无记录'
  13. },
  14. marginTop:{
  15. type: String,
  16. default: '200rpx'
  17. },
  18. },
  19. data() {
  20. return {
  21. }
  22. },
  23. }
  24. </script>
  25. <style lang="scss" scoped>
  26. .empty-tips{
  27. .ic{
  28. width: 240rpx;
  29. height: 240rpx;
  30. margin-right: 20rpx;
  31. }
  32. .txt{
  33. margin-top: 20rpx;
  34. color:#999;
  35. font-size: 28rpx;
  36. }
  37. }
  38. </style>