|
|
|
@ -89,7 +89,7 @@ |
|
|
|
<el-row> |
|
|
|
<el-col :span="24"> |
|
|
|
<el-form-item :label="$t('page.business.study.studyFormPre.fzrsh')" prop="fzrsh"> |
|
|
|
<el-radio-group v-model="form.fzrsh"> |
|
|
|
<el-radio-group v-model="form.fzrsh" @change="validFormSubmit"> |
|
|
|
<el-radio :label="$t('page.business.study.studyFormPre.yes')">{{ |
|
|
|
$t('page.business.study.studyFormPre.yes') |
|
|
|
}}</el-radio> |
|
|
|
@ -204,6 +204,11 @@ export default { |
|
|
|
created() { |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
validFormSubmit() { |
|
|
|
this.$refs["formSubmit"].validate(valid => { |
|
|
|
if (valid) { } |
|
|
|
}) |
|
|
|
}, |
|
|
|
onPreCallback(data) { |
|
|
|
console.log("data:" + JSON.stringify(data)) |
|
|
|
console.log("formdata:" + JSON.stringify(this.$refs.templateTable.getFilledFormData())) |
|
|
|
|