From 17c9330f32ff7c19de6174181af29fed285a392c Mon Sep 17 00:00:00 2001 From: caozehui <2427765068@qq.com> Date: Thu, 7 Nov 2024 15:54:01 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BE=AE=E8=B0=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/views/system/dictionary/dictData/index.vue | 2 +- frontend/src/views/system/dictionary/dictType/index.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/views/system/dictionary/dictData/index.vue b/frontend/src/views/system/dictionary/dictData/index.vue index c3c3411..e4876bf 100644 --- a/frontend/src/views/system/dictionary/dictData/index.vue +++ b/frontend/src/views/system/dictionary/dictData/index.vue @@ -137,7 +137,7 @@ const handleDelete = async (params: Dict.ResDictData) => { const downloadFile = async () => { ElMessageBox.confirm('确认导出字典数据?', '温馨提示', {type: 'warning'}).then(() => - useDownload(exportDictData, '字典数据导出数据', {typeId: dictTypeId.value, ...(proTable.value?.searchParam)}, false, '.xls'), + useDownload(exportDictData, '字典数据导出数据', {typeId: dictTypeId.value, ...(proTable.value?.searchParam)}, false), ) } diff --git a/frontend/src/views/system/dictionary/dictType/index.vue b/frontend/src/views/system/dictionary/dictType/index.vue index b8884dc..ada1af1 100644 --- a/frontend/src/views/system/dictionary/dictType/index.vue +++ b/frontend/src/views/system/dictionary/dictType/index.vue @@ -108,7 +108,7 @@ const toDictData = (row: Dict.ResDictType) => { // 导出字典类型列表 const downloadFile = async () => { ElMessageBox.confirm('确认导出字典类型数据?', '温馨提示', { type: 'warning' }).then(() => - useDownload(exportDictType, '字典类型导出数据', proTable.value?.searchParam, false,'.xls'), + useDownload(exportDictType, '字典类型导出数据', proTable.value?.searchParam, false), ) }