diff --git a/src/views/trials/trials-panel/setting/reading-unit/components/TableQsForm.vue b/src/views/trials/trials-panel/setting/reading-unit/components/TableQsForm.vue
index 48fec499..3ecd55da 100644
--- a/src/views/trials/trials-panel/setting/reading-unit/components/TableQsForm.vue
+++ b/src/views/trials/trials-panel/setting/reading-unit/components/TableQsForm.vue
@@ -423,7 +423,7 @@
- {{ [1, 2, 3, 4].includes(form.CustomCalculateMark) ? '请选择同级问题!' : '请选择表格问题下的子问题!' }}
+ {{ [1, 2, 3, 4].includes(form.CustomCalculateMark) ? $t('trials:readingUnit:qsList:message:msg1') : $t('trials:readingUnit:qsList:message:msg2') }}
@@ -976,10 +976,11 @@ export default {
})
},
save() {
+ this.form.ClassifyAlgorithms = JSON.stringify(this.ClassifyAlgorithmsList)
this.$refs.tableQsForm.validate(valid => {
if (!valid) return
this.loading = true
- this.form.ClassifyAlgorithms = JSON.stringify(this.ClassifyAlgorithmsList)
+
if(this.form.QuestionName && this.$i18n.locale === 'zh'){
this.form.QuestionEnName = this.form.QuestionName;
}else if(this.form.QuestionEnName && this.$i18n.locale === 'en'){