Merge branch 'uat'
continuous-integration/drone/push Build is passing Details

uat_us
DESKTOP-6C3NK6N\WXS 2024-07-31 13:11:51 +08:00
commit c6c9142934
1 changed files with 7 additions and 2 deletions

View File

@ -27,7 +27,7 @@
</el-form-item>
<!-- 分组名称 -->
<el-form-item
v-if="(form.Type === 'group' && !isLook) || (isLook && $i18n.locale !== 'en')"
v-if="(form.Type === 'group' && $i18n.locale !== 'en')"
:label="$t('trials:readingUnit:qsList:title:groupName')"
prop="GroupName"
>
@ -37,7 +37,7 @@
</el-form-item>
<!-- 分组名称(En) -->
<el-form-item
v-if="(form.Type === 'group' && !isLook) || (isLook && $i18n.locale !== 'zh')"
v-if="(form.Type === 'group' && $i18n.locale !== 'zh')"
:label="$t('trials:readingUnit:qsList:title:groupNameEn')"
prop="GroupEnName"
>
@ -1003,6 +1003,11 @@ export default {
}else if(!this.form.QuestionName && this.form.QuestionEnName){
this.form.QuestionName = this.form.QuestionEnName;
}
if(this.form.GroupName && !this.form.GroupEnName){
this.form.GroupEnName = this.form.GroupName;
}else if(!this.form.GroupName && this.form.GroupEnName){
this.form.GroupName = this.form.GroupEnName;
}
var params = Object.assign({}, this.form)
params.TrialId = this.$route.query.trialId
params.ReadingCriterionPageId = this.data.ReadingCriterionPageId