|
@@ -137,6 +137,7 @@ import {XcColumn} from "@/components/xiao-chan/xc-table-v3/XcColumn";
|
|
import {xcMessage} from '@/utils/xiaochan-element-plus'
|
|
import {xcMessage} from '@/utils/xiaochan-element-plus'
|
|
import TestDescribe from "@/components/zhu-yuan-yi-sheng/emr/auxiliary-tools/test-describe.vue";
|
|
import TestDescribe from "@/components/zhu-yuan-yi-sheng/emr/auxiliary-tools/test-describe.vue";
|
|
import {getDateRangeFormatDate} from '@/utils/date'
|
|
import {getDateRangeFormatDate} from '@/utils/date'
|
|
|
|
+import {getCriticalValueByPatInfo} from '@/api/zhu-yuan-yi-sheng/critical-value'
|
|
|
|
|
|
const emits = defineEmits(['close'])
|
|
const emits = defineEmits(['close'])
|
|
const sidebarList = ref()
|
|
const sidebarList = ref()
|
|
@@ -158,11 +159,13 @@ const query = async () => {
|
|
}
|
|
}
|
|
queryInspectionsIndex(param).then((res) => {
|
|
queryInspectionsIndex(param).then((res) => {
|
|
sidebarList.value = res
|
|
sidebarList.value = res
|
|
|
|
+ console.log(res)
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
|
|
const sidebarColums: XcColumn<any>[] = [
|
|
const sidebarColums: XcColumn<any>[] = [
|
|
- {title: '名称', key: 'aply_CTNT'}
|
|
|
|
|
|
+ {title: '名称', key: 'aply_CTNT'},
|
|
|
|
+ {title: '时间', key: 'ordr_CREATE_DATE', width: 180}
|
|
]
|
|
]
|
|
|
|
|
|
|
|
|
|
@@ -287,7 +290,8 @@ onMounted(async () => {
|
|
dateRange.value.push(patInfo.value.admissDate)
|
|
dateRange.value.push(patInfo.value.admissDate)
|
|
dateRange.value.push(await getServerDateApi())
|
|
dateRange.value.push(await getServerDateApi())
|
|
await query()
|
|
await query()
|
|
- // todo 要查询患者危急值
|
|
|
|
|
|
+ // todo 检验接口没有返回危急值。
|
|
|
|
+ // let res = await getCriticalValueByPatInfo(patInfo.value.inpatientNo, patInfo.value.admissTimes)
|
|
})
|
|
})
|
|
|
|
|
|
</script>
|
|
</script>
|
|
@@ -299,7 +303,7 @@ onMounted(async () => {
|
|
}
|
|
}
|
|
|
|
|
|
.sidebar {
|
|
.sidebar {
|
|
- width: 220px;
|
|
|
|
|
|
+ width: 420px;
|
|
}
|
|
}
|
|
|
|
|
|
.main {
|
|
.main {
|
|
@@ -328,6 +332,5 @@ onMounted(async () => {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|