|
@@ -61,11 +61,9 @@
|
|
|
:pat-no="patInfo.inpatientNo"
|
|
|
:times="patInfo.admissTimes"
|
|
|
@to-fill-in-data="toFillInData"/>
|
|
|
- <EmrTestV2 :pat-no="patInfo.inpatientNo" v-if="index === 6" @close="close"/>
|
|
|
-
|
|
|
- <!-- <emr-test @close="close" v-if="index === 6"-->
|
|
|
- <!-- :times="patInfo.admissTimes"-->
|
|
|
- <!-- :pat-no="patInfo.inpatientNo"/>-->
|
|
|
+ <EmrTestV2 :pat-no="patInfo.inpatientNo"
|
|
|
+ v-if="index === 6"
|
|
|
+ @close="close"/>
|
|
|
<emr-herbs v-if="index === 7"
|
|
|
@close="close"
|
|
|
:pat-no="patInfo.inpatientNo"
|
|
@@ -77,7 +75,7 @@
|
|
|
:times="patInfo.admissTimes"/>
|
|
|
<pims-web-view v-if="index === 10" :pat-no="patInfo.inpatientNo"/>
|
|
|
<div style="width: 100%;height: 100%" v-if="index === 11">
|
|
|
- <fluorescence-test v-bind="patProps" show-copy/>
|
|
|
+ <fluorescence-test show-copy :pat-no="patInfo.inpatientNo" :times="patInfo.admissTimes"/>
|
|
|
</div>
|
|
|
</el-drawer>
|
|
|
|
|
@@ -127,7 +125,6 @@ const end = ref('')
|
|
|
const start = ref('')
|
|
|
|
|
|
const drawer = ref(false)
|
|
|
-let patProps = $ref()
|
|
|
|
|
|
|
|
|
const toFillInData = (data) => {
|
|
@@ -162,10 +159,6 @@ const emrChannelClick = (name) => {
|
|
|
}
|
|
|
|
|
|
onMounted(async () => {
|
|
|
- patProps = {
|
|
|
- patNo: props.patInfo.inpatientNo,
|
|
|
- times: props.patInfo.admissTimes
|
|
|
- }
|
|
|
patInfo.value = props.patInfo
|
|
|
end.value = formatDate(await getServerDateApi())
|
|
|
start.value = formatDate(props.patInfo.admissDate)
|