|
|
|
@ -7,7 +7,7 @@ |
|
|
|
<TagPrintDialog ref="tagPrintDialogRef"></TagPrintDialog> |
|
|
|
<SelectReagentDialog ref="selectReagentDialogRef" /> |
|
|
|
<SelectInstrumentDialog ref="selectInstrumentDialogRef" /> |
|
|
|
<SelectMixReagentDialog ref="selectMixReagentDialogRef" :selectedCode="selectedCode" /> |
|
|
|
<SelectMixReagentDialog ref="selectMixReagentDialogRef"/> |
|
|
|
<EditSign ref="editSignRef" @cancel="handleEditSignCancel" @callback="handleEditSignCallback" /> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
@ -244,8 +244,6 @@ export default { |
|
|
|
currentEditSignUuid: null, // 当前请求EditSign的HandleFormItem的uuid |
|
|
|
latestParams: {},//用于存储最新的params |
|
|
|
hasCustomTable: false,//是否有自定义表格 |
|
|
|
|
|
|
|
selectedCode:'bh' |
|
|
|
}; |
|
|
|
}, |
|
|
|
created() { |
|
|
|
@ -271,10 +269,6 @@ export default { |
|
|
|
}) |
|
|
|
//选择试剂/供试品/给药制剂弹窗 |
|
|
|
EventBus.$on("showSelectMixReagentDialog", (data) => { |
|
|
|
debugger |
|
|
|
if(data.type==15){ |
|
|
|
this.selectedCode = 'id' |
|
|
|
} |
|
|
|
this.$refs.selectMixReagentDialogRef.show(data.studyFormId, data,this.templateData.studyId) |
|
|
|
}) |
|
|
|
EventBus.$on("hideSelectMixReagentDialog", (data) => { |
|
|
|
|