From 8f62b8cd5fdd5f5a621d6094d6dc7145c0e93b6b Mon Sep 17 00:00:00 2001 From: hang <872297557@qq.com> Date: Thu, 1 Jun 2023 15:51:36 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=AF=BC=E5=87=BA=E6=A8=A1?= =?UTF-8?q?=E6=9D=BF=E5=9B=BD=E9=99=85=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- IRaCIS.Core.Application/Helper/ExcelExportHelper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IRaCIS.Core.Application/Helper/ExcelExportHelper.cs b/IRaCIS.Core.Application/Helper/ExcelExportHelper.cs index 8493931f8..c93c83f25 100644 --- a/IRaCIS.Core.Application/Helper/ExcelExportHelper.cs +++ b/IRaCIS.Core.Application/Helper/ExcelExportHelper.cs @@ -138,11 +138,11 @@ public static class ExcelExportHelper { if (data.IsEn_US) { - workbook.RemoveSheetAt(1); + workbook.RemoveSheetAt(0); } else { - workbook.RemoveSheetAt(0); + workbook.RemoveSheetAt(1); } var memoryStream2 = new MemoryStream();