diff --git a/src/components/feature/DataCompare/DataCompare.vue b/src/components/feature/DataCompare/DataCompare.vue index dfa8dd641e4bbd501afa7c116b12cce9f270e907..09b8affe813f289326bcbcd27d8a28c266d804b8 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('系统异常'); } });