bugfix - 试卷规则标签选项

(cherry picked from commit e3857a75d0)
This commit is contained in:
Yuan 2023-05-06 18:03:32 +08:00 committed by fan
parent e66295f016
commit 7ff9a044b8

View File

@ -185,20 +185,18 @@ export default {
this.$nextTick(() => {
this.$refs.form.resetFields()
if (detail) {
this.isEditMode = true
this.index = detail.index
this.sceneInfo = detail.sceneInfo || []
this.form = {
type: detail.type,
subtype: detail.subtype,
amount: detail.amount,
score: detail.score,
id: detail.id || '',
tags: detail.tags ? detail.tags[0] : '',
}
this.fillLabelsOption().then(() => {
this.isEditMode = true
this.index = detail.index
console.log(detail)
this.form = {
type: detail.type,
subtype: detail.subtype,
amount: detail.amount,
score: detail.score,
id: detail.id || '',
tags: detail.tags ? detail.tags[0] : '',
}
this.sceneInfo = detail.sceneInfo || []
this.topicNum = detail.topicNum
this.getQuestionAmount()
})
} else {