|
|
@ -8,7 +8,7 @@ |
|
|
<el-radio-button label="3">给药制剂列表</el-radio-button> |
|
|
<el-radio-button label="3">给药制剂列表</el-radio-button> |
|
|
</el-radio-group> |
|
|
</el-radio-group> |
|
|
<SelectTable ref="selectSjRef" :columns="columns" :selectedId="selectedId" :searchForm="searchForm" |
|
|
<SelectTable ref="selectSjRef" :columns="columns" :selectedId="selectedId" :searchForm="searchForm" |
|
|
:studyFormId="studyFormId" :listApi="listApi" :selectedCode="selectedCode" @radioSelect="handleSelect" /> |
|
|
|
|
|
|
|
|
:studyFormId="studyFormId" :studyId="studyId" :listApi="listApi" :selectedCode="selectedCode" @radioSelect="handleSelect" /> |
|
|
|
|
|
|
|
|
<!-- 只有步骤才会又这个选项 --> |
|
|
<!-- 只有步骤才会又这个选项 --> |
|
|
<div v-if="sourceFrom === 'step'" class="other-reagent"> |
|
|
<div v-if="sourceFrom === 'step'" class="other-reagent"> |
|
|
@ -92,6 +92,7 @@ export default { |
|
|
bzList: [], |
|
|
bzList: [], |
|
|
depart: "", |
|
|
depart: "", |
|
|
studyFormId: '',//有个studyFormId需要从外面动态传过来 |
|
|
studyFormId: '',//有个studyFormId需要从外面动态传过来 |
|
|
|
|
|
studyId:'',//有个studyId需要从外面动态传过来 |
|
|
uuid: '',//为了标识eventBus的事件id, |
|
|
uuid: '',//为了标识eventBus的事件id, |
|
|
selectType: '1',//默认选择试剂列表 |
|
|
selectType: '1',//默认选择试剂列表 |
|
|
listApi: public_sjList, |
|
|
listApi: public_sjList, |
|
|
@ -112,7 +113,7 @@ export default { |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
methods: { |
|
|
methods: { |
|
|
show(studyFormId, data) { |
|
|
|
|
|
|
|
|
show(studyFormId, data,studyId) { |
|
|
if (data && data.uuid) {//为了标识eventBus的事件id |
|
|
if (data && data.uuid) {//为了标识eventBus的事件id |
|
|
this.uuid = data.uuid |
|
|
this.uuid = data.uuid |
|
|
} |
|
|
} |
|
|
@ -121,6 +122,7 @@ export default { |
|
|
this.mixType = mixType; |
|
|
this.mixType = mixType; |
|
|
this.sourceFrom = sourceFrom; |
|
|
this.sourceFrom = sourceFrom; |
|
|
this.studyFormId = studyFormId; |
|
|
this.studyFormId = studyFormId; |
|
|
|
|
|
this.studyId = studyId || ''; |
|
|
this.visible = true; |
|
|
this.visible = true; |
|
|
this.handleShowTableInfo(type); |
|
|
this.handleShowTableInfo(type); |
|
|
|
|
|
|
|
|
|