OCR 识别修改

This commit is contained in:
cwchen 2025-11-24 10:34:17 +08:00
parent 7cbd2bfe98
commit 8278cd5b25
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ export default {
Object.keys(chat_res).forEach(key => {
const formField = this.ocrResultParams[key];
if (formField && chat_res[key]) {
this.form[formField] = chat_res[key];
this.form[formField] = chat_res[key].replace(/\s/g, '');
}
});
}