CRM_26-02-05#story#8149,潜在服务商提交界面信息核验

This commit is contained in:
2026-02-03 17:33:46 +08:00
parent e800ee1b7e
commit 83f36b12a8

View File

@@ -156,6 +156,7 @@
minorCount: '', minorCount: '',
serviceAreaCode: [], serviceAreaCode: [],
linkEmail:'', linkEmail:'',
person:'',
accountInfoDTO:{ accountInfoDTO:{
dutyParagraph:'', dutyParagraph:'',
accountNumber:'', accountNumber:'',
@@ -264,6 +265,10 @@
this.$toast('营业执照未上传') this.$toast('营业执照未上传')
return return
} }
if(this.form.person != this.form.legalName){
this.$toast('身份证法人姓名和营业执照法人不一致')
return
}
if( !this.licensePhoto ) { if( !this.licensePhoto ) {
this.$toast('开户许可证未上传') this.$toast('开户许可证未上传')
return return
@@ -398,6 +403,7 @@
imageUrl: this.idFrontPhoto, imageUrl: this.idFrontPhoto,
cardSide: 'FRONT' cardSide: 'FRONT'
}) })
// 身份证法人名称
this.form.legalName = res?.data?.name this.form.legalName = res?.data?.name
}, },
async companyPhotoHandler(file) { async companyPhotoHandler(file) {
@@ -420,6 +426,8 @@
this.form.accountInfoDTO.dutyParagraph=res?.data?.regNum this.form.accountInfoDTO.dutyParagraph=res?.data?.regNum
this.form.accountInfoDTO.unitName = res?.data?.name this.form.accountInfoDTO.unitName = res?.data?.name
this.form.accountInfoDTO.companyType=res?.data?.type this.form.accountInfoDTO.companyType=res?.data?.type
// 营业执照法人名称
this.form.person = res?.data?.person
await this.QrCodeHandler(); await this.QrCodeHandler();
}, },
async licensePhotoHandler(file){// 开户许可证 async licensePhotoHandler(file){// 开户许可证