You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.0 KiB
62 lines
1.0 KiB
<template>
|
|
<view class="phone">
|
|
<view class="phone-bd">
|
|
<view class="item">
|
|
<!-- <image src="/static/renzheng-shibai.png"></image> -->
|
|
<image src="/static/renzheng-zhong.png"></image>
|
|
</view>
|
|
</view>
|
|
<!-- <view class="title">真人认证失败</view> -->
|
|
<!-- <view class="title">请拍照</view> -->
|
|
<view class="title">头像认证中,请稍后</view>
|
|
<!-- 认证失败,将恢复原头像 -->
|
|
<!-- 认证通过,请返回重新保存 -->
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
page{
|
|
background-color: #FFFFFF;
|
|
}
|
|
.phone{
|
|
padding: 25rpx;
|
|
overflow: hidden;
|
|
|
|
.title{
|
|
color: #222222;
|
|
font-weight: 500;
|
|
font-size: 30rpx;
|
|
text-align: center;
|
|
margin-top: 30rpx;
|
|
}
|
|
.tips{
|
|
font-weight: 500;
|
|
font-size: 24rpx;
|
|
color: #999999;
|
|
text-align: center;
|
|
margin-top: 20rpx;
|
|
line-height: 50rpx;
|
|
}
|
|
&-bd{
|
|
padding-top: 140rpx;
|
|
text-align: center;
|
|
image{
|
|
width: 353rpx;
|
|
height: 252rpx;
|
|
}
|
|
}
|
|
}
|
|
</style> |