From 62287d09f9f5f1135163359fa18fd1fc4f8b2bc6 Mon Sep 17 00:00:00 2001 From: zhengyiming <540361168@qq.com> Date: 星期二, 08 七月 2025 17:00:33 +0800 Subject: [PATCH] fix: 江佑保系统健壮性修复 --- src/views/Home/Home.vue | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/src/views/Home/Home.vue b/src/views/Home/Home.vue index 3a619a3..d0dce4a 100644 --- a/src/views/Home/Home.vue +++ b/src/views/Home/Home.vue @@ -636,7 +636,12 @@ async function handleGoDownloadInvoice(row: API.GetInsurancePageOutput) { try { - await insuranceOrderServices.getInvoiceId({ id: row.id }); + await insuranceOrderServices.getInvoiceId( + { id: row.id }, + { + timeout: 60 * 1000 * 30, + } + ); router.push({ name: 'InsureDownloadInvoice', params: { -- Gitblit v1.9.1