| | |
| | | <view class="list-item-value">{{ form.aliName }}</view> |
| | | </view> |
| | | <view class="list-item" style="flex-direction: column; align-items: flex-start;"> |
| | | <view class="list-item-label" style="margin-bottom: 30rpx;">身份证正反面</view> |
| | | <view class="list-item-label" style="margin-bottom: 30rpx;">{{form.companyType === 0 ? '身份证正反面' : '法人身份证正反面'}}</view> |
| | | <view class="idcard"> |
| | | <view class="idcard-image" v-if="form.idcardImg" @click="previewImage(form.idcardImg)"> |
| | | <image :src="getFullPath(form.idcardImg)" mode="aspectFill"></image> |
| | |
| | | </view> |
| | | <view class="list-item"> |
| | | <view class="list-item-label">法人身份证号</view> |
| | | <view class="list-item-value">{{ form.legalPersonCardNo }}</view> |
| | | </view> |
| | | <view class="list-item" style="flex-direction: column; align-items: flex-start;"> |
| | | <view class="list-item-label" style="margin-bottom: 30rpx;">法人身份证正反面</view> |
| | | <view class="idcard"> |
| | | <view class="idcard-image" v-if="form.legalPersonCard" @click="previewImage(form.legalPersonCard)"> |
| | | <image :src="getFullPath(form.legalPersonCard)" mode="aspectFill"></image> |
| | | </view> |
| | | <view class="idcard-image" v-if="form.legalPersonCardBack" @click="previewImage(form.legalPersonCardBack)"> |
| | | <image :src="getFullPath(form.legalPersonCardBack)" mode="aspectFill"></image> |
| | | </view> |
| | | </view> |
| | | <view class="list-item-value">{{ form.legalPersonCard }}</view> |
| | | </view> |
| | | <view class="list-item" style="flex-direction: column; align-items: flex-start;"> |
| | | <view class="list-item-label" style="margin-bottom: 30rpx;">营业执照</view> |
| | |
| | | laborContractImgs: [], |
| | | socialSecurityImgs: [], |
| | | legalPersonName: '', |
| | | legalPersonCard: '', |
| | | legalPersonCardBack: '', |
| | | idcardImgUrl: '', |
| | | idcardImgBackUrl: '', |
| | | legalPersonCardNo: '', |
| | | businessImg: '', |
| | | depositAmount: '', |
| | |
| | | this.form.idcard = data.idcard || '' |
| | | this.form.aliAccount = data.aliAccount || '' |
| | | this.form.legalPersonName = data.legalPersonName || '' |
| | | this.form.legalPersonCardNo = data.legalPersonCard || '' |
| | | // this.form.legalPersonCardNo = data.legalPersonCard || '' |
| | | |
| | | this.form.idcardImgUrl = data.idcardImgUrl || '' |
| | | this.form.idcardImgBackUrl = data.idcardImgBackUrl || '' |
| | | |
| | | this.form.aliName = data.aliName || '' |
| | | if (data.storeFrontImgs) { |
| | | this.form.storeFrontImgs = typeof data.storeFrontImgs === 'string' ? data.storeFrontImgs.split(',') : data.storeFrontImgs |
| | |
| | | if (data.socialSecurityImgs) { |
| | | this.form.socialSecurityImgs = typeof data.socialSecurityImgs === 'string' ? data.socialSecurityImgs.split(',') : data.socialSecurityImgs |
| | | } |
| | | this.form.legalPersonCard = data.legalPersonCard || '' |
| | | // this.form.legalPersonCard = data.legalPersonCard || '' |
| | | this.form.legalPersonCardBack = data.legalPersonCardBack || '' |
| | | if (data.auditStatus === 1) { |
| | | this.form.depositAmount = data.depositAmount / 100 || '' |
| | |
| | | display: flex; |
| | | align-items: center; |
| | | flex-wrap: wrap; |
| | | gap: 20rpx; |
| | | .imgItem { |
| | | width: 144rpx; |
| | | height: 144rpx; |
| | | border-radius: 8rpx; |
| | | gap: 20rpx; |
| | | overflow: hidden; |
| | | image { |
| | | width: 100%; |