From bbfcdc9c242c4dc97503429d6db14700209735a2 Mon Sep 17 00:00:00 2001 From: BianLzhaoMin <11485688+bianliangzhaomin123@user.noreply.gitee.com> Date: Sun, 4 Jan 2026 09:42:55 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../entry-and-exit-manage/person-entry/index.vue | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/views/construction-person/entry-and-exit-manage/person-entry/index.vue b/src/views/construction-person/entry-and-exit-manage/person-entry/index.vue index e571f03..b9cbb24 100644 --- a/src/views/construction-person/entry-and-exit-manage/person-entry/index.vue +++ b/src/views/construction-person/entry-and-exit-manage/person-entry/index.vue @@ -546,10 +546,14 @@ export default { } try { - const res = await getDownloadTaskAPI(this.queryDownloadTask) + const { data: res } = await getDownloadTaskAPI( + this.queryDownloadTask, + ) if (res.taskId) { this.downloadTaskTimer = setInterval(async () => { - const result = await getDownloadTaskLinkAPI(res.taskId) + const { data: result } = await getDownloadTaskLinkAPI( + res.taskId, + ) if (result.status === 'completed') { clearInterval(this.downloadTaskTimer)