From b65399520797ec96da8d3d613811f88c080bd9ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=BE=E5=BA=86=E6=BA=90?= Date: Fri, 28 Feb 2025 19:55:25 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E5=89=8D=E7=AB=AF=E5=AF=BC?= =?UTF-8?q?=E5=87=BA=E8=A1=A8=E6=A0=BC=E5=90=8E=E7=BC=80=EF=BC=8C=E7=A7=BB?= =?UTF-8?q?=E9=99=A4=E5=A4=87=E4=BB=B6=E5=AE=A1=E6=89=B9=E5=8F=96=E6=B6=88?= =?UTF-8?q?=E6=8C=89=E9=92=AE=E6=9D=A1=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/eam/basic/locationArea/index.vue | 2 +- src/views/eam/device/deviceAllot/index.vue | 4 ++-- src/views/eam/item/applicationRecord/index.vue | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/eam/basic/locationArea/index.vue b/src/views/eam/basic/locationArea/index.vue index 021e5e9..32da2c1 100644 --- a/src/views/eam/basic/locationArea/index.vue +++ b/src/views/eam/basic/locationArea/index.vue @@ -196,7 +196,7 @@ // 发起导出 exportLoading.value = true const data = await LocationAreaApi.exportLocationArea(tableObject.params) - download.excel(data, '库区.xls') + download.excel(data, '库区.xlsx') } catch { } finally { exportLoading.value = false diff --git a/src/views/eam/device/deviceAllot/index.vue b/src/views/eam/device/deviceAllot/index.vue index 11b1667..a65d182 100644 --- a/src/views/eam/device/deviceAllot/index.vue +++ b/src/views/eam/device/deviceAllot/index.vue @@ -191,7 +191,7 @@ const handleExport = async () => { // 发起导出 exportLoading.value = true const data = await DeviceAllotApi.exportDeviceAccounts(setSearchParams) - download.excel(data, '备件台账.xls') + download.excel(data, '备件台账.xlsx') } catch { } finally { exportLoading.value = false @@ -206,7 +206,7 @@ const handleImport = () => { // 导入附件弹窗所需的参数 const importTemplateData = reactive({ templateUrl: '', - templateTitle: '备件台账导入模版.xls' + templateTitle: '备件台账导入模版.xlsx' }) // 导入成功之后 const importSuccess = () => { diff --git a/src/views/eam/item/applicationRecord/index.vue b/src/views/eam/item/applicationRecord/index.vue index d93dfd3..e7afaf0 100644 --- a/src/views/eam/item/applicationRecord/index.vue +++ b/src/views/eam/item/applicationRecord/index.vue @@ -191,7 +191,7 @@ const butttondata = (row) => { return [ defaultButtons.approveBtn({ hide: isShowApproveButton(row) ,hasPermi:'item:itemApplyMain:approve'}), // 审批 - defaultButtons.mainListOrderCloBtn({ hide: isShowCloseButton(row) ,hasPermi:'item:itemApplyMain:close'}), // 关闭 + defaultButtons.mainListOrderCloBtn({ hasPermi:'item:itemApplyMain:close'}), // 关闭 // defaultButtons.mainListEditBtn(null), // 编辑 // defaultButtons.mainListDeleteBtn(null), // 删除 ]