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.
 

24 lines
1.2 KiB

<!--index.wxml-->
<scroll-view style="padding-top: 5vh;">
<view class="container" wx:if="{{state === 'wait'}}">
<view style="display: flex; flex-direction: column; align-items: center">
<icon class="icon-box-img" type="info" size="72"></icon>
<text style="margin-top: 40rpx; font-size: 20px">等待认证</text>
</view>
<button type="primary" plain="true" style="margin-bottom: 40rpx;" bindtap="close">再试一次</button>
</view>
<view class="container" wx:elif="{{state === 'success'}}">
<view style="display: flex; flex-direction: column; align-items: center">
<icon class="icon-box-img" type="success" size="72"></icon>
<text style="margin-top: 40rpx; font-size: 20px">已认证成功</text>
</view>
<button type="primary" plain="true" style="margin-bottom: 40rpx;" bindtap="close">我知道了</button>
</view>
<view class="container" wx:else>
<view style="display: flex; flex-direction: column; align-items: center">
<icon class="icon-box-img" type="warn" size="72"></icon>
<text style="margin-top: 40rpx; font-size: 20px">认证失败</text>
</view>
<button type="primary" plain="true" style="margin-bottom: 40rpx;" bindtap="close">再试一次</button>
</view>
</scroll-view>