|
@@ -18,15 +18,16 @@
|
|
|
</template>
|
|
|
</template>
|
|
|
</el-popover>
|
|
|
- <el-drawer v-model="drawer"
|
|
|
- direction="btt"
|
|
|
- append-to-body
|
|
|
- @opened="handleDrawerOpened"
|
|
|
- modal-class="change_padding"
|
|
|
- @closed="currentComp = null"
|
|
|
- destroy-on-close
|
|
|
- size="100%"
|
|
|
- :with-header="false">
|
|
|
+ <el-drawer
|
|
|
+ v-model="drawer"
|
|
|
+ direction="btt"
|
|
|
+ append-to-body
|
|
|
+ @opened="handleDrawerOpened"
|
|
|
+ modal-class="change_padding"
|
|
|
+ @closed="currentComp = ''"
|
|
|
+ destroy-on-close
|
|
|
+ size="100%"
|
|
|
+ :with-header="false">
|
|
|
<el-button class="close_but"
|
|
|
type="danger"
|
|
|
:style="{zIndex: zIndex}"
|
|
@@ -41,7 +42,7 @@
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
import EmrOrderList from "@/components/zhu-yuan-yi-sheng/emr/auxiliary-tools/EmrOrderList.vue";
|
|
|
-import {defineProps, onMounted, ref, h, computed} from 'vue'
|
|
|
+import {onMounted, ref, h, computed} from 'vue'
|
|
|
import EmrYzTemperature from "@/components/zhu-yuan-yi-sheng/emr/auxiliary-tools/EmrYzTemperature.vue";
|
|
|
import {patInfo} from './emr-tools-store'
|
|
|
import EmrInspect from "@/components/zhu-yuan-yi-sheng/emr/auxiliary-tools/EmrInspect.vue";
|
|
@@ -184,6 +185,24 @@ const drawerRange: {
|
|
|
comp: () => {
|
|
|
return h(BloodSugar, {...propsPatientInfo.value})
|
|
|
}
|
|
|
+ }, {
|
|
|
+ name: '麻醉',
|
|
|
+ comp: () => {
|
|
|
+ return h('iframe', {
|
|
|
+ class: 'iframe_max_border0',
|
|
|
+ src: `http://172.16.32.181/interface/patient/doc.html?admissionNum=${propsPatientInfo.value.patNo}&admissionTimes=${propsPatientInfo.value.times}`
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ,
|
|
|
+ {
|
|
|
+ name: '护理',
|
|
|
+ comp: () => {
|
|
|
+ return h('iframe', {
|
|
|
+ class: 'iframe_max_border0',
|
|
|
+ src: `http://172.16.32.181/interface/patient/doc.html?admissionNum=${propsPatientInfo.value.patNo}&admissionTimes=${propsPatientInfo.value.times}`
|
|
|
+ })
|
|
|
+ }
|
|
|
}
|
|
|
],
|
|
|
"引用": [
|
|
@@ -239,7 +258,7 @@ function handelClick(item) {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-const currentComp = ref(null)
|
|
|
+const currentComp = ref('')
|
|
|
|
|
|
const setComp = (comp) => {
|
|
|
currentComp.value = comp
|