48 lines
1.1 KiB
Vue
48 lines
1.1 KiB
Vue
<template>
|
||
<view>
|
||
<!-- 模态框 -->
|
||
<view class="cu-modal" :class="isShow?'show':''">
|
||
<view class="cu-dialog">
|
||
<view class="padding-xl">
|
||
<view class="cuIcon-profile big-icon padding-tb text-main-color"></view>
|
||
<view>您还未进行实名认证,因涉及上门家政服务,需完成实名认证填写,并通过审核,以保证用户安全</view>
|
||
</view>
|
||
<view class="cu-bar bg-white solid-top">
|
||
<view class="action margin-0 flex-sub text-black" data-modal="showTakeCertifiedModal"
|
||
@tap="hideModal">以后认证</view>
|
||
<view class="action margin-0 flex-sub text-main-color solid-left"
|
||
data-modal="showTakeCertifiedModal" @tap="hideModal" @click="goToCertify">立即认证</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</view>
|
||
</template>
|
||
|
||
<script>
|
||
export default {
|
||
name: 'vertify-certify',
|
||
emits: ['reload'],
|
||
data() {
|
||
return {
|
||
isShow: false
|
||
}
|
||
},
|
||
methods: {
|
||
showModal(e) {
|
||
this.isShow = true
|
||
},
|
||
hideModal(e) {
|
||
this.isShow = false;
|
||
},
|
||
goToCertify() {
|
||
uni.navigateTo({
|
||
url: '/pages/my/certification'
|
||
})
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style>
|
||
</style>
|