学员端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
577 B

1 year ago
  1. <template>
  2. <view class="noDate">
  3. <view class="img">
  4. <image src="https://jiangxijiakao-1.oss-cn-hangzhou.aliyuncs.com/complain/2023-10-09/1696832739095-nodata.png" mode=""></image>
  5. </view>
  6. <view class="text">
  7. <slot>
  8. <text>暂无数据</text>
  9. </slot>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. </script>
  15. <style lang="scss" scoped>
  16. .noDate {
  17. display: flex;
  18. align-items: center;
  19. justify-content: center;
  20. flex-direction: column;
  21. }
  22. .img {
  23. width: 438rpx;height: 286rpx;
  24. }
  25. .text {
  26. font-size: 26rpx;
  27. color: #999;
  28. margin-top: 60rpx;
  29. }
  30. </style>