|
@@ -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>
|