From 38ad4e72a2c154dff4dcc0a70af0a43532b50e75 Mon Sep 17 00:00:00 2001 From: caiyiling <1321909229@qq.com> Date: Wed, 18 Dec 2024 18:05:28 +0800 Subject: [PATCH] =?UTF-8?q?=E7=B3=BB=E7=BB=9F=E6=A0=87=E5=87=86=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E6=9B=B4=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../template/components/CriterionQuestionForm.vue | 10 ++++++++++ 1 file changed, 10 insertions(+) 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)) {