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.
37 lines
879 B
37 lines
879 B
<template>
|
|
<view>
|
|
<view v-if="status==1" class="flex flex-direction align-center">
|
|
<image style="width: 136rpx;margin: 100rpx 0 20rpx;" src="../../static/mine/success.png" mode="widthFix"></image>
|
|
<view style="font-size: 36rpx;">恭喜你,认证成功!</view>
|
|
</view>
|
|
<view v-if="status==0" class="flex flex-direction align-center">
|
|
<image style="width: 136rpx;margin: 100rpx 0 20rpx;" src="../../static/mine/fail.png" mode="widthFix"></image>
|
|
<view style="font-size: 36rpx;">认证失败!请<text class="text-red" @tap="back">重新认证</text></view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
status:0
|
|
};
|
|
},
|
|
onLoad(options) {
|
|
this.status = options.status
|
|
},
|
|
methods:{
|
|
back(){
|
|
uni.redirectTo({
|
|
url:"../realname/realname"
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
|
|
</style>
|