diff --git a/healthlink-his-ui/src/api/infection/detail.js b/healthlink-his-ui/src/api/infection/detail.js new file mode 100644 index 000000000..8d512718e --- /dev/null +++ b/healthlink-his-ui/src/api/infection/detail.js @@ -0,0 +1,9 @@ +import request from '@/utils/request' + +export function getInfectionRateByDept(params) { + return request({ url: '/infection-detail/rate-by-dept', method: 'get', params }) +} + +export function getInfectionTrend(params) { + return request({ url: '/infection-detail/trend', method: 'get', params }) +} diff --git a/healthlink-his-ui/src/views/infection/detail/index.vue b/healthlink-his-ui/src/views/infection/detail/index.vue new file mode 100644 index 000000000..042943eb6 --- /dev/null +++ b/healthlink-his-ui/src/views/infection/detail/index.vue @@ -0,0 +1,152 @@ + + + + 院感监测统计 + + + + + 查询条件 + + + + + + + + + + + + + 查询 + + + + + + + + + {{ rateData.totalCases || 0 }} + 总病例数 + + + + + + + {{ rateData.reportedCases || 0 }} + 已上报 + + + + + + + {{ rateData.confirmedCases || 0 }} + 已确认 + + + + + + + {{ rateData.infectionRate || 0 }}% + 感染率 + + + + + + + + + 按感染类型分布 + + + + + + + + + 按感染部位分布 + + + + + + + + + + 感染趋势 + + + + + + + + + + + + + +