From f912b58d4f76d4c684cc40cb94b25a28a0b93f74 Mon Sep 17 00:00:00 2001 From: Flow <958079825@qq.com> Date: Tue, 15 Jul 2025 10:48:45 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/abpm/index.ts | 11 +- src/patientcom/index.vue | 9 +- src/views/analysis/ABPM/ABPM.vue | 148 ++++++++++++++++----------- src/views/analysis/ABPM/analysis.vue | 137 ++++++++++++++++++------- src/views/analysis/HOLTER.vue | 74 -------------- 5 files changed, 206 insertions(+), 173 deletions(-) diff --git a/src/api/abpm/index.ts b/src/api/abpm/index.ts index acda1b0..25e98e5 100644 --- a/src/api/abpm/index.ts +++ b/src/api/abpm/index.ts @@ -1,10 +1,14 @@ import request from '@/config/axios' +import { patientinfoVO } from '../patientinfo' // ABPM动态血压监测 VO export interface abpmVO { id: number // 主键ID examid: string // 检查ID regid: string // 患者注册ID + name: string // 患者姓名 + gender: string // 性别 + age: number // 年龄 orgid: string // 机构ID orgname: string // 机构名称 managerorg: string // 管理机构 @@ -48,5 +52,10 @@ export const abpmApi = { // 导出ABPM动态血压监测 Excel exportabpm: async (params) => { return await request.download({ url: `/system/abpm/export-excel`, params }) + }, + + // 批量新增ABPM患者数据 + insertAbpmPatientData: async (data: patientinfoVO[]) => { + return await request.post({ url: `/system/abpm/insertAbpmPatientData`, data }) } -} \ No newline at end of file +} diff --git a/src/patientcom/index.vue b/src/patientcom/index.vue index 4415408..600de0f 100644 --- a/src/patientcom/index.vue +++ b/src/patientcom/index.vue @@ -107,11 +107,11 @@ @@ -201,6 +201,7 @@