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.

30 lines
560 B

7 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. <text solt>暂无数据</text>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. </script>
  13. <style lang="scss" scoped>
  14. .noDate {
  15. display: flex;
  16. align-items: center;
  17. justify-content: center;
  18. flex-direction: column;
  19. }
  20. .img {
  21. width: 438rpx;height: 286rpx;
  22. }
  23. .text {
  24. font-size: 26rpx;
  25. color: #999;
  26. margin-top: 60rpx;
  27. }
  28. </style>