|
|
- <template>
- <!-- 实名认证 -->
- <view class="page">
- <navbar title="实名认证"
- leftClick
- @leftClick="$utils.navigateBack"/>
-
- <view class="info-tips">
- 完成实名认证,<text>您将获得《实名认证平台特权》</text>
- </view>
-
- <view class="form">
- <view class="form-item">
- <view class="label">
- 姓名
- </view>
- <input type="text" class="form-input"
- placeholder="请输入姓名"
- v-model="form.name"/>
- </view>
-
- <view class="form-item">
- <view class="label">
- 身份证号码
- </view>
- <input type="text" class="form-input"
- placeholder="请输入身份证号码"
- v-model="form.name"/>
- </view>
-
- <view class="form-item">
- <view class="label">
- 联系方式
- </view>
- <input type="text" class="form-input"
- placeholder="请输入联系方式"
- v-model="form.name"/>
- </view>
-
- <view class="form-item">
- <view class="title">
- 请上传身份证人像面照片(选填)
- </view>
- <view class="tips">
- 信息仅用身份核实,上传后可增加曝光机会
- </view>
- </view>
-
- <view class="form-item">
- <uv-upload
- :fileList="fileList"
- :maxCount="1"
- width="690rpx"
- height="280rpx"
- multiple
- @afterRead="afterRead"
- @delete="deleteImage">
- <view class="upload">
- <image src="../static/auth/cart.png"
- mode="aspectFit"
- style="width: 390rpx;height: 280rpx;" />
- <view class="btn-add">
- 点击上传
- </view>
- </view>
- </uv-upload>
- </view>
- <view class="form-item">
- <view class="tips"
- style="text-align: center;padding: 20rpx 0;">
- (确保文字清晰、可辨、避免遮挡、不全、反光)
- </view>
- </view>
- </view>
-
- <view class="uni-color-btn">
- 认证
- </view>
-
- <view class="config">
- <uv-checkbox-group
- v-model="checkboxValue"
- shape="circle">
- <view class="content">
- <view
- style="display: flex;">
- <uv-checkbox
- size="40rpx"
- icon-size="30rpx"
- activeColor="#3796F8"
- :name="1"
- ></uv-checkbox>
- 阅读并同意我们的<text @click="$refs.configPopup.open('getPrivacyPolicy')">“服务协议与隐私条款”</text>
- </view>
- <view class="">
- 以及<text @click="$refs.configPopup.open('getUserAgreement')">个人信息保护指引</text>
- </view>
- </view>
- </uv-checkbox-group>
- </view>
-
- <configPopup ref="configPopup"/>
- </view>
- </template>
-
- <script>
- export default {
- data() {
- return {
- checkboxValue : [],
- form : {},
- fileList: [],
- }
- },
- methods: {
- deleteImage(e){
- this.fileList.splice(e.index, 1)
- },
- afterRead(e){
- let self = this
- e.file.forEach(file => {
- self.$Oss.ossUpload(file.url).then(url => {
- self.fileList.push({
- url
- })
- })
- })
- },
-
- }
- }
- </script>
-
- <style scoped lang="scss">
- .page{
- background-color: #fff;
- min-height: 100vh;
- .info-tips{
- width: 100%;
- padding: 30rpx 0;
- background-color: #f3f3f3;
- text-align: center;
- text{
- color: $uni-color;
- }
- }
-
- .form {
- padding: 30rpx;
- .form-item{
- .label{
- padding: 20rpx 0;
- }
- .form-input{
- border: 1px solid $uni-color;
- background: rgba($uni-color, 0.1);
- padding: 10rpx 20rpx;
- font-size: 28rpx;
- }
- .title{
- font-weight: 900;
- margin-top: 50rpx;
- padding: 10rpx 0;
- }
- .tips{
- font-size: 26rpx;
- color: #777;
- padding-bottom: 20rpx;
- }
- }
- .upload{
- display: flex;
- justify-content: center;
- align-items: center;
- width: 690rpx;
- background-color: #f3f3f3;
- border-radius: 10rpx;
- .btn-add{
- margin: auto;
- padding: 10rpx 20rpx;
- background-color: $uni-color;
- color: #fff;
- border-radius: 10rpx;
- }
- }
- }
-
- .config{
- font-size: 26rpx;
- line-height: 40rpx;
- width: 100%;
- display: flex;
- justify-content: center;
- .content{
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- text{
- color: $uni-color;
- }
- }
- }
- </style>
|