|
|
@ -92,10 +92,10 @@ |
|
|
<el-radio-group v-model="form.fzrsh"> |
|
|
<el-radio-group v-model="form.fzrsh"> |
|
|
<el-radio :label="$t('page.business.study.studyFormPre.yes')">{{ |
|
|
<el-radio :label="$t('page.business.study.studyFormPre.yes')">{{ |
|
|
$t('page.business.study.studyFormPre.yes') |
|
|
$t('page.business.study.studyFormPre.yes') |
|
|
}}</el-radio> |
|
|
|
|
|
|
|
|
}}</el-radio> |
|
|
<el-radio :label="$t('page.business.study.studyFormPre.no')">{{ |
|
|
<el-radio :label="$t('page.business.study.studyFormPre.no')">{{ |
|
|
$t('page.business.study.studyFormPre.no') |
|
|
$t('page.business.study.studyFormPre.no') |
|
|
}}</el-radio> |
|
|
|
|
|
|
|
|
}}</el-radio> |
|
|
</el-radio-group> |
|
|
</el-radio-group> |
|
|
</el-form-item> |
|
|
</el-form-item> |
|
|
</el-col> |
|
|
</el-col> |
|
|
@ -239,7 +239,7 @@ export default { |
|
|
}, |
|
|
}, |
|
|
selectTemplateChange(val) { |
|
|
selectTemplateChange(val) { |
|
|
this.form.bdnr = val.content |
|
|
this.form.bdnr = val.content |
|
|
if ( this.$i18n.locale === 'zh_CN') { |
|
|
|
|
|
|
|
|
if (this.$i18n.locale === 'zh_CN') { |
|
|
this.form.templateMc = val.name |
|
|
this.form.templateMc = val.name |
|
|
this.form.bdmc = val.name |
|
|
this.form.bdmc = val.name |
|
|
} else { |
|
|
} else { |
|
|
@ -248,6 +248,9 @@ export default { |
|
|
} |
|
|
} |
|
|
this.form.templateSn = val.sn |
|
|
this.form.templateSn = val.sn |
|
|
this.templateData = deepClone(this.form) |
|
|
this.templateData = deepClone(this.form) |
|
|
|
|
|
setTimeout(() => { |
|
|
|
|
|
this.$refs["form"].validate() |
|
|
|
|
|
}, 200) |
|
|
}, |
|
|
}, |
|
|
cancel() { |
|
|
cancel() { |
|
|
this.$emit('close') |
|
|
this.$emit('close') |
|
|
|