index.vue 717 B

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