NoData.vue 608 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <view class="no-data">
  3. <view class="no-data-img">
  4. <text class="cuIcon cuIcon-info"></text>
  5. </view>
  6. <view class="no-data-text">暂无数据</view>
  7. </view>
  8. </template>
  9. <script setup lang="ts">
  10. </script>
  11. <style scoped>
  12. .no-data {
  13. display: flex;
  14. flex-direction: column;
  15. align-items: center;
  16. justify-content: center;
  17. height: 60vh;
  18. }
  19. .no-data-img {
  20. width: 200rpx;
  21. height: 200rpx;
  22. }
  23. .cuIcon-info{
  24. font-size: 200rpx;
  25. color: #999999;
  26. }
  27. .no-data-text {
  28. font-size: 30rpx;
  29. color: #999999;
  30. line-height: 90rpx;
  31. }
  32. </style>