|
|
|
@ -63,7 +63,7 @@ |
|
|
|
<el-row> |
|
|
|
<el-col :span="24"> |
|
|
|
<el-form-item :label="$t('page.business.study.studyFormFill.sfbl')" prop="sfbl"> |
|
|
|
<el-select v-model="form.sfbl" :placeholder="$t('form.placeholderSelect')" style="width: 100%;"> |
|
|
|
<el-select v-model="form.sfbl" :placeholder="$t('form.placeholderSelect')" style="width: 100%;" @change="validForm"> |
|
|
|
<el-option :label="$t('page.business.study.studyFormFill.yes')" value="是" /> |
|
|
|
<el-option :label="$t('page.business.study.studyFormFill.no')" value="否" /> |
|
|
|
</el-select> |
|
|
|
@ -563,6 +563,11 @@ export default { |
|
|
|
this.getCcwz() |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
validForm() { |
|
|
|
this.$refs["form"].validate(valid => { |
|
|
|
if (valid) { } |
|
|
|
}) |
|
|
|
}, |
|
|
|
getCcwz() { |
|
|
|
listData({ |
|
|
|
pageNum: 1, |
|
|
|
@ -889,13 +894,9 @@ export default { |
|
|
|
cancelSave() { |
|
|
|
try { |
|
|
|
// 类型1试验,5非试验表单,10麻精药表单 |
|
|
|
if (this.form.studyType == 1) { |
|
|
|
EventBus.$emit('onRefreshStudyTbbdList', {}); |
|
|
|
} else if (this.form.studyType == 5) { |
|
|
|
EventBus.$emit('onRefreshNonTrialTbbdList', {}); |
|
|
|
} else if (this.form.studyType == 10) { |
|
|
|
EventBus.$emit('onRefreshDrugTbbdList', {}); |
|
|
|
} |
|
|
|
EventBus.$emit('onRefreshStudyTbbdList', {}); |
|
|
|
EventBus.$emit('onRefreshNonTrialTbbdList', {}); |
|
|
|
EventBus.$emit('onRefreshDrugTbbdList', {}); |
|
|
|
let key = caesarDecipher(this.$route.params.key) |
|
|
|
let data = JSON.parse(key) |
|
|
|
if (data && data != undefined && data != '') { |
|
|
|
|