'异常健康告知删除'

This commit is contained in:
proudlx
2021-04-21 15:34:08 +08:00
parent 2fccdffdac
commit 01a4f03b00

View File

@@ -739,6 +739,24 @@ export default {
// return
// }
// })
} else if (detail.name == 'fileListNotify') {
this.fileListNotify.forEach((item, index, arr) => {
if (item.name == file.name) {
arr.splice(index,1)
}else{
return;
}
})
this.deleteImg(file, 'fileListNotify')
} else if (detail.name == 'fileListNotifyInsured') {
this.fileListNotifyInsured.forEach((item, index, arr) => {
if (item.name == file.name) {
arr.splice(index,1)
}else{
return;
}
})
this.deleteImg(file, 'fileListNotifyInsured')
}
})
},