From 107dd70598e4826b1de31d315d85a43b1ff19500 Mon Sep 17 00:00:00 2001 From: wuqing_b Date: Wed, 15 Apr 2020 15:42:36 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=A0=B8=E9=85=B8=E6=A3=80?= =?UTF-8?q?=E6=B5=8B=E6=8C=89=E9=92=AE=E5=90=8D=E7=A7=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/feature/DataCompare/DataCompare.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/components/feature/DataCompare/DataCompare.vue b/src/components/feature/DataCompare/DataCompare.vue index dfa8dd6..09b8aff 100644 --- a/src/components/feature/DataCompare/DataCompare.vue +++ b/src/components/feature/DataCompare/DataCompare.vue @@ -66,7 +66,7 @@ 核酸检测数据对比更新核酸检测次数 @@ -234,17 +234,17 @@ export default class DiseasDeList extends Vue { } }); } - // 核酸检测数据对比 updateNucleicDetection + // 更新核酸检测次数 updateNucleicDetection private updateNucleicDetection() { diseaseInfoServer.updateNucleicDetection().then((res: any) => { try { if (res.status === 200) { - this.nucleicResult = '核酸检测数据对比成功'; + this.nucleicResult = '更新核酸检测次数成功'; } else { - this.nucleicResult = '核酸检测数据对比失败'; + this.nucleicResult = '更新核酸检测次数失败'; } } catch (error) { - this.nucleicResult = '核酸检测数据对比失败'; + this.nucleicResult = '更新核酸检测次数失败'; this.$message('系统异常'); } }); -- Gitee