bugfix - 试卷规则标签选项

This commit is contained in:
Yuan 2023-05-06 18:03:32 +08:00
parent b472601fbc
commit e3857a75d0

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 {