Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

no-data-view.vue 638B

123456789101112131415161718192021222324252627282930313233343536373839
  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. const props = defineProps({
  9. text: {
  10. type: String,
  11. },
  12. imgSrc: {
  13. type: String
  14. }
  15. })
  16. </script>
  17. <style lang="scss" scoped>
  18. .no-data-wrapper {
  19. width: 100%;
  20. height: 100%;
  21. display: flex;
  22. flex-direction: column;
  23. align-items: center;
  24. .img {
  25. width: 60%;
  26. margin-bottom: 40rpx;
  27. }
  28. .text {
  29. font-family: Microsoft YaHei;
  30. font-weight: 400;
  31. font-size: 40rpx;
  32. color: #666666;
  33. line-height: 50rpx;
  34. }
  35. }
  36. </style>