xiaochan 11 月之前
父節點
當前提交
83495613d0
共有 1 個文件被更改,包括 6 次插入9 次删除
  1. 6 9
      src/components/zhu-yuan-yi-sheng/emr/auxiliary-tools/EmrElectrocardiogram.vue

+ 6 - 9
src/components/zhu-yuan-yi-sheng/emr/auxiliary-tools/EmrElectrocardiogram.vue

@@ -1,20 +1,17 @@
 <script setup>
 const props = defineProps({
   patNo: String,
-})
+});
 
 const src = computed(() => {
-  return `http://pathology.thyy.cn/website/Service/Search.aspx?id=${props.patNo}`
-})
-
+  return `http://ecg.thyy.cn/website/Service/Search.aspx?id=${props.patNo}`;
+});
 </script>
 
 <template>
-  <div style="height: 100%;width: 100%">
-    <iframe :src="src" width="100%" height="100%"/>
+  <div style="height: 100%; width: 100%">
+    <iframe :src="src" width="100%" height="100%" />
   </div>
 </template>
 
-<style scoped lang="scss">
-
-</style>
+<style scoped lang="scss"></style>