2023-03-12 17:07:20 +08:00
|
|
|
<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>
|
2023-03-18 23:59:22 +08:00
|
|
|
<view>营业执照认证审核通过后才具备组建公司团队资质</view>
|
2023-03-12 17:07:20 +08:00
|
|
|
</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>
|