| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <view style="background-color: #fff;min-height: 100vh;">
- <view class="default" >
- <image src="/static/empty.png" mode="heightFix"></image>
- <view style="font-size: 26rpx;">
- <text style="color: #909090;">{{msg}}</text>
- </view>
- <navigator :url="url" class="cu-btn round bg-btn margin-top-50" style="padding: 35rpx 65rpx;margin-left: 8rpx;">
- {{btnName}}
- </navigator>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- msg:"您还未完成注册认证",
- btnName:"去注册认证",
- url:"../register/register"
- }
- },
- onLoad(options) {
- if(options.type=='2'){
- //导航栏标题
- uni.setNavigationBarTitle({
- title:"房屋认证"
- })
- //去认证
- this.msg="您还未完成房屋认证"
- this.btnName="去认证"
- this.url="../auth/auth"
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss">
- .default {
text-align: center;
position: fixed;
left: 50%;
top: 40%;
transform: translate(-50%, -50%);
}
.default text{
color: #AAAAAA;
}
.default image {
height: 280rpx;
display: inline-block;
}
- </style>
|