Compare commits

..

No commits in common. "275501db20e11b79bbcdeb42d58edfa1ad6375b7" and "7f8d08032c34d8a21e7971e3e9a00d13ff79fe0c" have entirely different histories.

3 changed files with 5 additions and 21 deletions

View File

@ -201,7 +201,4 @@ export default {
margin-right: 5px;
}
}
::v-deep .el-dialog__header{
font-weight: bold;
}
</style>

View File

@ -47,7 +47,7 @@
</el-form-item>
<!-- 问题名称 -->
<el-form-item
v-if="(form.Type !== 'group' && $i18n.locale !== 'en' )"
v-if="(form.Type !== 'group' && !isLook) || (isLook && $i18n.locale !== 'en')"
:label="$t('trials:readingUnit:qsList:title:qsName')"
prop="QuestionName"
>
@ -57,7 +57,7 @@
</el-form-item>
<!-- 问题名称(En) -->
<el-form-item
v-if="(form.Type !== 'group' && $i18n.locale !== 'zh')"
v-if="(form.Type !== 'group' && !isLook) || (isLook && $i18n.locale !== 'zh')"
:label="$t('trials:readingUnit:qsList:title:qsNameEn')"
prop="QuestionEnName"
>
@ -813,8 +813,6 @@ 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`}],
@ -998,11 +996,6 @@ 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

View File

@ -35,7 +35,7 @@
/>
</el-form-item>
<el-form-item
v-if="form.Type !== 'group'&& $i18n.locale !== 'en'"
v-if="form.Type !== 'group'"
:label="$t('trials:readingUnit:qsList:title:qsName')"
prop="QuestionName"
>
@ -44,7 +44,7 @@
/>
</el-form-item>
<el-form-item
v-if="form.Type !== 'group'&& $i18n.locale !== 'zh'"
v-if="form.Type !== 'group'"
:label="$t('trials:readingUnit:qsList:title:qsNameEn')"
prop="QuestionEnName"
>
@ -575,8 +575,7 @@ 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` }],
@ -718,11 +717,6 @@ 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