Escort/src/pages/realname/components/Success/index.vue

51 lines
997 B
Vue
Executable File
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<template>
<view class="h-full flex flex-col overflow-hidden">
<view
class="flex-1 h-0 overflow-auto flex flex-col items-center justify-center"
>
<view class="">
<u-icon
name="checkmark-circle-fill"
color="#07c160"
size="160rpx"
></u-icon>
</view>
<view class="pt-4 pl-2">
实名认证已上传审核中
</view>
</view>
<view class="flex-none pb-4 px-4">
<u-button
type="primary"
text="确定"
shape="circle"
size="large"
@click="handleSubmit"
></u-button>
</view>
</view>
</template>
<script>
export default {
props: {
handler: {
type: Function,
default: () => () => {},
},
params: {
type: Object,
default: () => ({}),
},
},
methods: {
async handleSubmit() {
this.$store.user.userInfo.realStatus = 3
this.$Router.replaceAll('/')
},
},
}
</script>
<style></style>