|
|
|
@ -40,7 +40,8 @@ G |
|
|
|
<el-row> |
|
|
|
<el-col :span="24"> |
|
|
|
<el-form-item :label="$t('page.business.form.bdmb')" prop="templateId"> |
|
|
|
<SelectTemplate v-model="form.templateId" :name="form.templateMc" @change="selectTemplateChange" /> |
|
|
|
<SelectTemplate v-model="form.templateId" :name="form.templateMc" @change="selectTemplateChange" |
|
|
|
:needPre="1" /> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
@ -54,10 +55,10 @@ G |
|
|
|
<el-row> |
|
|
|
<el-col :span="24"> |
|
|
|
<el-form-item :label="$t('page.business.study.studyFormFill.sfbl')" prop="sfbl"> |
|
|
|
<el-radio-group v-model="form.sfbl"> |
|
|
|
<el-radio :label="1">{{ $t('page.business.study.studyFormFill.no') }}</el-radio> |
|
|
|
<el-radio :label="10">{{ $t('page.business.study.studyFormFill.yes') }}</el-radio> |
|
|
|
</el-radio-group> |
|
|
|
<el-select v-model="form.sfbl" :placeholder="$t('form.placeholderSelect')"> |
|
|
|
<el-option :label="$t('page.business.study.studyFormFill.yes')" :value="10" /> |
|
|
|
<el-option :label="$t('page.business.study.studyFormFill.no')" :value="1" /> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
</el-row> |
|
|
|
@ -73,7 +74,7 @@ G |
|
|
|
</el-form> |
|
|
|
</div> |
|
|
|
<div class="content" v-show="showIndex == 2"> |
|
|
|
<TemplateTable ref="templateTable" :sn="form.templateSn" fillType="preFill" /> |
|
|
|
<TemplateTable ref="templateTable" :sn="form.templateSn" :templateData="form.bdnr" fillType="preFill" /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
@ -152,6 +153,7 @@ export default { |
|
|
|
created() { |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
|
|
|
|
next() { |
|
|
|
this.$refs["form"].validate(valid => { |
|
|
|
if (valid) { |
|
|
|
|