ocr识别正则提取

This commit is contained in:
砂糖
2025-08-04 11:15:42 +08:00
parent 831695e236
commit b8a0792b5d
4 changed files with 218 additions and 57 deletions

View File

@@ -528,12 +528,13 @@ export default {
},
handleAccessory(row) {
this.accessoryOpen = true;
this.accessory = row.accessory;
this.form = row;
this.accessory = row.attachmentInfo;
},
handleAccessorySuccess(fileList) {
updatePurchasePlan({
planId: this.accessory.planId,
accessory: fileList.map(item => item.ossId).join(',')
planId: this.form.planId,
attachmentInfo: fileList.map(item => item.ossId).join(',')
}).then(response => {
this.$modal.msgSuccess("附件上传成功");
this.getList();