diff --git a/src/api/health/statisticAnalysis.js b/src/api/health/statisticAnalysis.js new file mode 100644 index 0000000..2b39859 --- /dev/null +++ b/src/api/health/statisticAnalysis.js @@ -0,0 +1,17 @@ +import request from '@/utils/request' + +export function getMarAnalysis(query) { + return request({ + url: '/health/analysis/marAnalysis', + method: 'get', + params: query + }) +} + +export function getTemperatureAnalysis(query) { + return request({ + url: '/health/analysis/temperatureAnalysis', + method: 'get', + params: query + }) +} diff --git a/src/views/health/temperatureStatistic/index.vue b/src/views/health/temperatureStatistic/index.vue new file mode 100644 index 0000000..effb475 --- /dev/null +++ b/src/views/health/temperatureStatistic/index.vue @@ -0,0 +1,594 @@ + + + + 查询条件 + + + + + + + + + + + + + + + + + + + + + + + 搜索 + 重置 + + + + + + + + + + 测量次数 + + {{ temp.totalCount }}次 + + + + + + + + + 最高体温 + + {{ temp.maxTemp }}℃ + + + + + + + + + 最低体温 + + {{ temp.minTemp }}℃ + + + + + + + + + 平均体温 + + {{ temp.averageTemp }} ℃ + + + + + + + + + + + 正常次数 + + {{ temp.normalTempCount }} 次(小于36.9℃) + + + + + + + + + 低烧次数 + + {{ temp.lowerTempCount }} 次(36.9~37.5℃) + + + + + + + + + 中烧次数 + + {{ temp.middleTempCount }} 次(37.5~38.5℃) + + + + + + + + + 高烧次数 + + {{ temp.higherTempCount }} (大于38.5℃) + + + + + + 体温统计 + + + + + + + + + + + + + + + {{ scope.$index + 1 }} + + + + + + + + + + + + + + + + + + +