|
|
@@ -265,8 +265,9 @@ export default { |
|
|
|
forbidClick: true, |
|
|
|
duration: 0, |
|
|
|
}); |
|
|
|
let params1 = new FormData(); |
|
|
|
params1.append("file", file.content); |
|
|
|
let params1 = { |
|
|
|
file:file.content |
|
|
|
} |
|
|
|
base64Upload(params1).then((r1) => { |
|
|
|
this.form.idCardPic = r1.fileName; |
|
|
|
}) |
|
|
@@ -278,8 +279,9 @@ export default { |
|
|
|
forbidClick: true, |
|
|
|
duration: 0, |
|
|
|
}); |
|
|
|
let params1 = new FormData(); |
|
|
|
params1.append("file", file.content); |
|
|
|
let params1 = { |
|
|
|
file:file.content |
|
|
|
} |
|
|
|
base64Upload(params1).then((r1) => { |
|
|
|
this.form.accountOpenCert = r1.fileName; |
|
|
|
}) |
|
|
|