From 8019a9cdd86c98de6d4560d905cf722425c4cbad Mon Sep 17 00:00:00 2001 From: madewang Date: Wed, 11 Mar 2020 18:20:52 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=AF=B9=E6=AF=94?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E5=A2=9E=E5=8A=A0=E6=97=B6=E9=97=B4=E9=80=89?= =?UTF-8?q?=E6=8B=A9=E5=99=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/feature/diseaseInfoServer.ts | 5 ++ .../feature/DataCompare/DataCompare.vue | 57 +++++++++++++++++-- 2 files changed, 57 insertions(+), 5 deletions(-) diff --git a/src/api/feature/diseaseInfoServer.ts b/src/api/feature/diseaseInfoServer.ts index d30ea1c..2c2f43e 100644 --- a/src/api/feature/diseaseInfoServer.ts +++ b/src/api/feature/diseaseInfoServer.ts @@ -227,6 +227,11 @@ export class DiseaseInfoServer { const url = `infection/trace/generate/fever/${date}`; return this.rSerivce.serverObj.post(url); } + // 更新患者位置 + public updatePatientLocation(date: any) { + const url = `infection/adress/latest/list?prevDate=${date}`; + return this.rSerivce.serverObj.post(url); + } // 通过身份证号 查询患者画像详情 public getDDHospitalEditDataIdNo(id: any) { diff --git a/src/components/feature/DataCompare/DataCompare.vue b/src/components/feature/DataCompare/DataCompare.vue index ebbb6c8..689313a 100644 --- a/src/components/feature/DataCompare/DataCompare.vue +++ b/src/components/feature/DataCompare/DataCompare.vue @@ -1,5 +1,19 @@