自定义阅片表格问题保存标记问题稽查显示全部问题
continuous-integration/drone/push Build is passing Details

main
wangxiaoshuang 2025-07-03 15:19:15 +08:00
parent 526fc3bd74
commit 38f132a69d
1 changed files with 13 additions and 6 deletions

View File

@ -1014,6 +1014,13 @@ export default {
}
}
}
this.QuestionsList.forEach(k => {
if (reg.test(k.Id)) {
if (answers.findIndex(i => i.tableQuestionId === k.Id) === -1) {
answers.push({ tableQuestionId: k.Id, answer: '' })
}
}
})
let params = {
questionId: this.question.Id,
RowIndex: this.questionForm[this.question.Id].length + 1,