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.
87 lines
2.3 KiB
87 lines
2.3 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{
|
|
min-height: 100%;
|
|
background: #fff;
|
|
// 认证的类型
|
|
.ce-frist{
|
|
background: #fff;
|
|
padding-left: 22rpx;
|
|
|
|
.cert-title{
|
|
font-size: 26rpx;
|
|
}
|
|
|
|
.ce-fbox{
|
|
text-align: center;
|
|
border: 2rpx solid #ccc;
|
|
width: 80%;
|
|
display: flex;
|
|
min-height: 60rpx;
|
|
margin: 24rpx auto ;
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
|