From 98757b6c06123355c8b5588220f8a63b493ddcc7 Mon Sep 17 00:00:00 2001 From: wangxiaoshuang <825034831@qq.com> Date: Thu, 23 Oct 2025 16:28:39 +0800 Subject: [PATCH] 1 --- .../visit/consistency-check/components/fullCheck.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/trials/trials-panel/visit/consistency-check/components/fullCheck.vue b/src/views/trials/trials-panel/visit/consistency-check/components/fullCheck.vue index 125b836e..4cc5595d 100644 --- a/src/views/trials/trials-panel/visit/consistency-check/components/fullCheck.vue +++ b/src/views/trials/trials-panel/visit/consistency-check/components/fullCheck.vue @@ -85,7 +85,7 @@ export default { methods: { async download(row, type) { let url = this.OSSclientConfig.basePath + row[type] - let name = `DataReconciliation_${Date.now()}` + let name = `DataReconciliation_${Date.now()}.xlsx` if (type === 'RelativePath') name = row.fileName await downLoadFile(url, name) },