From ab65a9f1c7e9f991101d11896fa93ff24522cd3a Mon Sep 17 00:00:00 2001
From: "DESKTOP-6C3NK6N\\WXS" <815034831@qq.com>
Date: Wed, 31 Jul 2024 11:17:32 +0800
Subject: [PATCH] =?UTF-8?q?=E9=98=85=E7=89=87=E5=8D=95=E5=85=83=E9=97=AE?=
=?UTF-8?q?=E9=A2=98=E9=85=8D=E7=BD=AE=E9=97=AE=E9=A2=98=E5=90=8D=E7=A7=B0?=
=?UTF-8?q?=E4=B8=AD=E8=8B=B1=E6=96=87=E9=97=AE=E9=A2=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../reading-unit/components/QuestionsForm.vue | 11 +++++++++--
.../setting/reading-unit/components/TableQsForm.vue | 12 +++++++++---
2 files changed, 18 insertions(+), 5 deletions(-)
diff --git a/src/views/trials/trials-panel/setting/reading-unit/components/QuestionsForm.vue b/src/views/trials/trials-panel/setting/reading-unit/components/QuestionsForm.vue
index f77b165b..e6d93f1d 100644
--- a/src/views/trials/trials-panel/setting/reading-unit/components/QuestionsForm.vue
+++ b/src/views/trials/trials-panel/setting/reading-unit/components/QuestionsForm.vue
@@ -47,7 +47,7 @@
@@ -57,7 +57,7 @@
@@ -791,6 +791,8 @@ export default {
],
QuestionName: [{required: true, message: this.$t('common:ruleMessage:specify'), trigger: ['blur', 'change']},
{max: 50, message: `${this.$t('common:ruleMessage:maxLength')} 50`}],
+ QuestionEnName:[{required: true, message: this.$t('common:ruleMessage:specify'), trigger: ['blur', 'change']},
+ {max: 50, message: `${this.$t('common:ruleMessage:maxLength')} 50`}],
TypeValue: [{required: true, message: this.$t('common:ruleMessage:specify'), trigger: ['blur', 'change']},
{validator: validateTypeVal, trigger: ['blur', 'change']},
{max: 200, message: `${this.$t('common:ruleMessage:maxLength')} 200`}],
@@ -974,6 +976,11 @@ export default {
this.$refs.qsForm.validate(valid => {
if (!valid) return
this.loading = true
+ if(this.form.QuestionName && !this.form.QuestionEnName){
+ this.form.QuestionEnName = this.form.QuestionName;
+ }else if(!this.form.QuestionName && this.form.QuestionEnName){
+ this.form.QuestionName = this.form.QuestionEnName;
+ }
var params = Object.assign({}, this.form)
params.TrialId = this.$route.query.trialId
params.ReadingCriterionPageId = this.data.ReadingCriterionPageId
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 63c35d12..28cde8a4 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
@@ -35,7 +35,7 @@
/>
@@ -44,7 +44,7 @@
/>
@@ -553,7 +553,8 @@ export default {
],
QuestionName: [{ required: true, message: this.$t('common:ruleMessage:specify'), trigger: 'blur' },
{ max: 200, message: `${this.$t('common:ruleMessage:maxLength')} 200` }],
-
+ QuestionEnName:[{required: true, message: this.$t('common:ruleMessage:specify'), trigger: ['blur', 'change']},
+ {max: 50, message: `${this.$t('common:ruleMessage:maxLength')} 50`}],
TypeValue: [{ required: true, message: this.$t('common:ruleMessage:specify'), trigger: 'blur' },
{ validator: validateTypeVal, trigger: 'blur' },
{ max: 200, message: `${this.$t('common:ruleMessage:maxLength')} 200` }],
@@ -695,6 +696,11 @@ export default {
this.$refs.tableQsForm.validate(valid => {
if (!valid) return
this.loading = true
+ if(this.form.QuestionName && !this.form.QuestionEnName){
+ this.form.QuestionEnName = this.form.QuestionName;
+ }else if(!this.form.QuestionName && this.form.QuestionEnName){
+ this.form.QuestionName = this.form.QuestionEnName;
+ }
var params = Object.assign({}, this.form)
params.TrialId = this.$route.query.trialId
params.ReadingQuestionId = this.readingQuestionId