|
|
|
@ -77,10 +77,10 @@ |
|
|
|
<el-row> |
|
|
|
<el-col :span="24"> |
|
|
|
<el-form-item :label="$t('page.business.study.studyFormPre.shryId')" prop="shryId"> |
|
|
|
<SelectStudyUser v-model="form.shryId" :query="{ |
|
|
|
<SelectStudyUser v-model="form.shryId" :query="{ |
|
|
|
studyId: form.studyId, |
|
|
|
studySubjectId: form.studySubjectId, |
|
|
|
permit: form.permitForSecectUser |
|
|
|
permit: permitForSecectUser |
|
|
|
}" key="shryId" @change="selectDeptUserChange" /> |
|
|
|
</el-form-item> |
|
|
|
</el-col> |
|
|
|
@ -154,6 +154,7 @@ export default { |
|
|
|
form: {}, |
|
|
|
open: false, |
|
|
|
openSubmit: false, |
|
|
|
permitForSecectUser:'', |
|
|
|
rulesApprove: { |
|
|
|
qmrmm: [{ |
|
|
|
required: true, |
|
|
|
@ -261,6 +262,7 @@ export default { |
|
|
|
}, |
|
|
|
edit(row) { |
|
|
|
this.reset() |
|
|
|
this.permitForSecectUser=row.permitForSecectUser |
|
|
|
if (row && row.id) { |
|
|
|
this.showIndex = 2 |
|
|
|
this.$modal.loading() |
|
|
|
@ -312,6 +314,7 @@ export default { |
|
|
|
let content = await this.$refs.templateTable.getFormData() |
|
|
|
if (content) { |
|
|
|
this.form.bdnr = JSON.stringify(content) |
|
|
|
debugger |
|
|
|
this.openSubmit = true |
|
|
|
} |
|
|
|
}, |
|
|
|
|