diff --git a/src/views/mes/reworkBatch/index.vue b/src/views/mes/reworkBatch/index.vue index 72022d168..252ba6c8f 100644 --- a/src/views/mes/reworkBatch/index.vue +++ b/src/views/mes/reworkBatch/index.vue @@ -279,7 +279,7 @@ const handleExport = async () => { // 发起导出 exportLoading.value = true const data = await ReworkBatchApi.exportReworkBatch(tableObject.params) - download.excel(data, '返工登记批量.xlsx') + download.excel(data, '返工返修登记(批量).xlsx') } catch { } finally { exportLoading.value = false @@ -294,7 +294,7 @@ const handleImport = () => { // 导入附件弹窗所需的参数 const importTemplateData = reactive({ templateUrl: '', - templateTitle: '返工登记批量导入模版.xlsx' + templateTitle: '返工返修登记(批量)模版.xlsx' }) // 导入成功之后 const importSuccess = () => { diff --git a/src/views/mes/reworkSingle/index.vue b/src/views/mes/reworkSingle/index.vue index e8b17bdd4..d8e8eb2b8 100644 --- a/src/views/mes/reworkSingle/index.vue +++ b/src/views/mes/reworkSingle/index.vue @@ -279,7 +279,7 @@ const handleExport = async () => { // 发起导出 exportLoading.value = true const data = await ReworkSingleApi.exportReworkSingle(tableObject.params) - download.excel(data, '返工登记单件.xlsx') + download.excel(data, '返工返修登记(单件)数据.xlsx') } catch { } finally { exportLoading.value = false @@ -294,7 +294,7 @@ const handleImport = () => { // 导入附件弹窗所需的参数 const importTemplateData = reactive({ templateUrl: '', - templateTitle: '返工登记单件导入模版.xlsx' + templateTitle: '返工返修登记(单件)导入模版.xlsx' }) // 导入成功之后 const importSuccess = () => {