Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <view class="no-data-wrapper">
  3. <img src="@/static/image/no-data.png" alt="" class="img"/>
  4. <view class="text">{{props.text || '暂无数据'}}</view>
  5. </view>
  6. </template>
  7. <script script="ts" setup >
  8. import { defineProps } from 'vue';
  9. const props = defineProps({
  10. text: {
  11. type: String,
  12. },
  13. imgSrc: {
  14. type: String
  15. }
  16. })
  17. </script>
  18. <style lang="scss" scoped>
  19. .no-data-wrapper {
  20. width: 100%;
  21. height: 100%;
  22. display: flex;
  23. flex-direction: column;
  24. align-items: center;
  25. .img {
  26. width: 60%;
  27. margin-bottom: 40rpx;
  28. }
  29. .text {
  30. font-family: Microsoft YaHei;
  31. font-weight: 400;
  32. font-size: 40rpx;
  33. color: #666666;
  34. line-height: 50rpx;
  35. }
  36. }
  37. </style>