checkIng.vue 714 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!-- 认证房屋审核中 -->
  2. <template>
  3. <view>
  4. <view class="img">
  5. <image src="../../static/null_image_checking@2x.png" style="width: 100%;height: 100%;"></image>
  6. </view>
  7. <view class="title">
  8. 审核中,请稍后~
  9. </view>
  10. </view>
  11. </template>
  12. <script>
  13. export default{
  14. data(){
  15. return{
  16. }
  17. },
  18. onUnload() {
  19. uni.switchTab({
  20. url: '../mine/myHouse',
  21. })
  22. },
  23. }
  24. </script>
  25. <style>
  26. .img{
  27. width: 520rpx;
  28. height: 520rpx;
  29. margin: 0 auto;
  30. margin-top: 262rpx;
  31. }
  32. .title{
  33. width: 270rpx;
  34. height: 50rpx;
  35. font-size:36rpx;
  36. font-family:PingFang SC;
  37. font-weight:400;
  38. line-height:50rpx;
  39. color:rgba(36,36,36,1);
  40. margin:0 auto;
  41. margin-top: 46rpx;
  42. }
  43. </style>