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), // 删除 ]