diff --git a/src/views/dictionary/template/components/CriterionQuestionForm.vue b/src/views/dictionary/template/components/CriterionQuestionForm.vue
index 76664a4d..25d97000 100644
--- a/src/views/dictionary/template/components/CriterionQuestionForm.vue
+++ b/src/views/dictionary/template/components/CriterionQuestionForm.vue
@@ -263,10 +263,11 @@
+ v-for="item in CriterionDictionaryList.ExportResult"
+ :key="item.Id"
+ :value="parseInt(item.Code)"
+ :label="$i18n.locale === 'zh' ? item.ValueCN : item.Value"
+ >
@@ -314,7 +315,7 @@
v-for="item of CriterionDictionaryList.QuestionType"
:key="item.Id"
:value="parseInt(item.Code)"
- :label="item.ValueCN"
+ :label="$i18n.locale === 'zh' ? item.ValueCN : item.Value"
/>
@@ -480,7 +481,7 @@
@@ -496,7 +497,7 @@
v-for="item of groupClassifyList"
:key="item.Id"
:value="parseInt(item.Code)"
- :label="item.ValueCN"
+ :label="$i18n.locale === 'zh' ? item.ValueCN : item.Value"
/>
@@ -590,7 +591,7 @@
v-for="item of lesionTypeList"
:key="item.Id"
:value="parseInt(item.Code)"
- :label="item.ValueCN"
+ :label="$i18n.locale === 'zh' ? item.ValueCN : item.Value"
/>
@@ -917,7 +918,7 @@ export default {
getCriterionDictionary() {
getCriterionDictionary({
ReadingCriterionId: this.data.ReadingQuestionCriterionSystemId,
- DictionaryCode: 'QuestionType',
+ DictionaryCodeList: ['QuestionType', 'ExportResult'],
}).then((res) => {
this.CriterionDictionaryList = res.Result
})
diff --git a/src/views/dictionary/template/components/TableQsForm.vue b/src/views/dictionary/template/components/TableQsForm.vue
index 99d064a6..4f4ff872 100644
--- a/src/views/dictionary/template/components/TableQsForm.vue
+++ b/src/views/dictionary/template/components/TableQsForm.vue
@@ -168,10 +168,11 @@
+ :value="parseInt(item.Code)"
+ :label="$i18n.locale === 'zh' ? item.ValueCN : item.Value"
+ >
@@ -199,7 +200,7 @@
v-for="item of CriterionDictionaryList.QuestionMark"
:key="item.Id"
:value="parseInt(item.Code)"
- :label="item.ValueCN"
+ :label="$i18n.locale === 'zh' ? item.ValueCN : item.Value"
/>
@@ -302,7 +303,7 @@
@@ -680,7 +681,7 @@ export default {
getCriterionDictionary() {
getCriterionDictionary({
ReadingCriterionId: this.criterionId,
- DictionaryCodeList: ['QuestionMark', 'OrganColumn']
+ DictionaryCodeList: ['QuestionMark', 'OrganColumn', 'ExportResult']
}).then(res => {
this.CriterionDictionaryList = res.Result
})