From b6609e10fe620f6c5c7befbdc95d2987194beb9f Mon Sep 17 00:00:00 2001 From: dk <1260500659@qq.com> Date: Thu, 9 Jul 2026 16:22:27 +0800 Subject: [PATCH] =?UTF-8?q?fix(performance):=20=E4=BF=AE=E6=AD=A3=E7=BB=A9?= =?UTF-8?q?=E6=95=88=E8=A1=A8=E5=AF=BC=E5=87=BA=E6=96=87=E4=BB=B6=E6=A0=BC?= =?UTF-8?q?=E5=BC=8F=20-=20=E5=B0=86=E9=80=89=E4=B8=AD=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E5=AF=BC=E5=87=BA=E7=9A=84=E6=96=87=E4=BB=B6=E6=A0=BC=E5=BC=8F?= =?UTF-8?q?=E4=BB=8E=20.zip=20=E6=9B=B4=E6=94=B9=E4=B8=BA=20.xlsx=20-=20?= =?UTF-8?q?=E5=B0=86=E5=85=A8=E9=83=A8=E6=95=B0=E6=8D=AE=E5=AF=BC=E5=87=BA?= =?UTF-8?q?=E7=9A=84=E6=96=87=E4=BB=B6=E6=A0=BC=E5=BC=8F=E4=BB=8E=20.zip?= =?UTF-8?q?=20=E6=9B=B4=E6=94=B9=E4=B8=BA=20.xlsx=20-=20=E7=A1=AE=E4=BF=9D?= =?UTF-8?q?=E5=AF=BC=E5=87=BA=E5=8A=9F=E8=83=BD=E4=B8=8E=E5=AE=9E=E9=99=85?= =?UTF-8?q?=E6=96=87=E4=BB=B6=E7=B1=BB=E5=9E=8B=E5=8C=B9=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/personal-center/my-performance/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/personal-center/my-performance/index.vue b/src/views/personal-center/my-performance/index.vue index 80b4470..5778386 100644 --- a/src/views/personal-center/my-performance/index.vue +++ b/src/views/personal-center/my-performance/index.vue @@ -466,7 +466,7 @@ async function handleExportSelected() { if (error || !blob) return; - downloadBlob(blob, `绩效表_导出选中_${dayjs().format('YYYY-MM-DD')}.zip`); + downloadBlob(blob, `绩效表_导出选中_${dayjs().format('YYYY-MM-DD')}.xlsx`); } async function handleExportAll() { @@ -476,7 +476,7 @@ async function handleExportAll() { if (error || !blob) return; - downloadBlob(blob, `绩效表_导出全部_${dayjs().format('YYYY-MM-DD')}.zip`); + downloadBlob(blob, `绩效表_导出全部_${dayjs().format('YYYY-MM-DD')}.xlsx`); } async function handleExportCommand(command: 'selected' | 'all') {