Merge branch 'uat'
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
commit
c6c9142934
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue