|  | @@ -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,14 @@ const drawerRange: {
 | 
	
		
			
				|  |  |        comp: () => {
 | 
	
		
			
				|  |  |          return h(BloodSugar, {...propsPatientInfo.value})
 | 
	
		
			
				|  |  |        }
 | 
	
		
			
				|  |  | +    }, {
 | 
	
		
			
				|  |  | +      name: '手麻',
 | 
	
		
			
				|  |  | +      comp: () => {
 | 
	
		
			
				|  |  | +        return h('iframe', {
 | 
	
		
			
				|  |  | +          class: 'layout_full_size',
 | 
	
		
			
				|  |  | +          src: `http://172.16.32.181/interface/patient/doc.html?admissionNum=${propsPatientInfo.value.patNo}&admissionTimes=${propsPatientInfo.value.times}`
 | 
	
		
			
				|  |  | +        })
 | 
	
		
			
				|  |  | +      }
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |    ],
 | 
	
		
			
				|  |  |    "引用": [
 | 
	
	
		
			
				|  | @@ -239,7 +248,7 @@ function handelClick(item) {
 | 
	
		
			
				|  |  |    }
 | 
	
		
			
				|  |  |  }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -const currentComp = ref(null)
 | 
	
		
			
				|  |  | +const currentComp = ref('')
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  const setComp = (comp) => {
 | 
	
		
			
				|  |  |    currentComp.value = comp
 |