学员端小程序
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.

33 lines
602 B

10 months ago
10 months 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. padding-bottom: 40rpx;
  22. }
  23. .img {
  24. width: 438rpx;height: 286rpx;
  25. }
  26. .text {
  27. font-size: 26rpx;
  28. color: #999;
  29. margin-top: 60rpx;
  30. }
  31. </style>