12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <!-- 认证房屋审核中 -->
- <template>
- <view>
- <view class="img">
- <image src="../../static/null_image_checking@2x.png" style="width: 100%;height: 100%;"></image>
- </view>
- <view class="title">
- 审核中,请稍后~
- </view>
- </view>
- </template>
- <script>
- export default{
- data(){
- return{
-
- }
- },
- onUnload() {
- uni.switchTab({
- url: '../mine/myHouse',
- })
- },
- }
- </script>
- <style>
- .img{
- width: 520rpx;
- height: 520rpx;
- margin: 0 auto;
- margin-top: 262rpx;
- }
- .title{
- width: 270rpx;
- height: 50rpx;
- font-size:36rpx;
- font-family:PingFang SC;
- font-weight:400;
- line-height:50rpx;
- color:rgba(36,36,36,1);
- margin:0 auto;
- margin-top: 46rpx;
- }
- </style>
|