This commit is contained in:
BianLzhaoMin 2025-09-26 14:42:28 +08:00
parent fcf237fd05
commit ff0f4eae06
1 changed files with 2 additions and 1 deletions

View File

@ -198,8 +198,8 @@
:multiple="true"
ref="faceImgRef"
v-if="!isReadCard"
@onUploadChange="onUploadChangeFaceImg"
:file-type="['jpg', 'png', 'jpeg']"
@onUploadChange="onUploadChangeFaceImg"
:file-list.sync="idCardInfoForm.faceImg"
:is-uploaded="idCardInfoForm.faceImg.length >= 1"
/>
@ -1326,6 +1326,7 @@ export default {
if (this.Base64Photo) {
params.facePhotoBase64 =
'data:image/jpeg;base64,' +
this.Base64Photo
}