diff --git a/src/views/dictionary/template/components/CriterionQuestionForm.vue b/src/views/dictionary/template/components/CriterionQuestionForm.vue index 8cb54177..1d9010aa 100644 --- a/src/views/dictionary/template/components/CriterionQuestionForm.vue +++ b/src/views/dictionary/template/components/CriterionQuestionForm.vue @@ -890,6 +890,7 @@ export default { mounted() { this.initForm() this.getCalculateQuestions('number') + }, methods: { typeValueChange(v) { @@ -905,6 +906,14 @@ export default { } }) }, + getBasicConfigSelect() { + getCriterionDictionaryList({ + CriterionId: this.criterionId, + SystemCriterionId: this.criterionId + }).then(res => { + this.dicList = res.Result + }) + }, getCalculateQuestions(type) { getSystemCalculateQuestions({ systemCriterionId: this.criterionId, @@ -944,6 +953,7 @@ export default { await this.getParentQuestions() await this.getLesionTypeDictionary() await this.getLesionType() + await this.getBasicConfigSelect() if (Object.keys(this.data).length > 0) { for (const k in this.form) { if (this.data.hasOwnProperty(k)) {