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.
71 lines
2.0 KiB
71 lines
2.0 KiB
<template>
|
|
<view class="certinfo">
|
|
<!-- 认证第一步 -->
|
|
<view class="ce-frist">
|
|
<view class="cert-title">我的认证</view>
|
|
<view class="ce-fbox">
|
|
<view class="fbtit">机构认证</view>
|
|
<view class="fbicon fbjg"></view>
|
|
<view class="">
|
|
含企业、政府、事业单位、团体、组织
|
|
</view>
|
|
</view>
|
|
<view class="ce-fbox">
|
|
<view class="fbtit">个人认证</view>
|
|
<view class="fbicon fbgr"></view>
|
|
<view class="">
|
|
适用于个人用户
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- <div class="right_box" id="institutions">
|
|
<div class="box_title" id="box_title1">机构认证</div>
|
|
<div class="border_box">
|
|
<div class="border_icon1"></div>
|
|
<div class="border_title">机构认证</div>
|
|
<div class="border_title" style="margin: 15px 0px;">含企业、政府、事业单位、团体、组织</div>
|
|
<div class="border_input">
|
|
<input autocomplete="off" autocomplete="off" type="button" name="" id="organAuth01" value="立即认证"
|
|
onclick="handelOrganization()" />
|
|
</div>
|
|
</div>
|
|
</div> -->
|
|
<!-- <div class="right_box" id="people">
|
|
<div class="box_title" id="box_title2">个人认证</div>
|
|
<div class="border_box">
|
|
<div class="border_icon"></div>
|
|
<div class="border_title">个人认证</div>
|
|
<div class="border_title" style="margin: 15px 0px;">适用于个人用户</div>
|
|
<div class="border_input">
|
|
<input autocomplete="off" autocomplete="off" type="button" name="" id="organAuth02" value="立即认证"
|
|
onclick="handelPersonal()" />
|
|
</div>
|
|
</div> -->
|
|
</div>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import { checkLogin } from '@/core/app'
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.certinfo{
|
|
// 认证的类型
|
|
.ce-frist{
|
|
|
|
}
|
|
}
|
|
</style>
|
|
|