index.vue 708 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <view class="nodatadiv">
  3. <view class="">
  4. <u--image :showLoading="true" src="https://i.ringzle.com/file/20240104/a41e61c5857c446c8f6c63aa12008681.png"
  5. width="220rpx" height="150rpx" @click="click"></u--image>
  6. </view>
  7. <view class="nodata">
  8. 暂无数据
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. </script>
  14. <style>
  15. .nodata {
  16. margin-top: 40rpx;
  17. font-size: 30rpx;
  18. font-family: PingFangSC, PingFang SC;
  19. font-weight: 400;
  20. color: #333333;
  21. }
  22. .nodatadiv {
  23. width: 100%;
  24. height: 100%;
  25. display: flex;
  26. flex-direction: column;
  27. align-items: center;
  28. justify-content: center;
  29. /* background-color: #fff; */
  30. background-color: transparent;
  31. padding-top: 20vh;
  32. }
  33. </style>