fix: 导出文件名改为「精油配方备份+日期」
Some checks failed
PR Preview / teardown-preview (pull_request) Has been skipped
Test / unit-test (push) Successful in 6s
Test / build-check (push) Successful in 3s
PR Preview / test (pull_request) Successful in 5s
PR Preview / deploy-preview (pull_request) Successful in 15s
Test / e2e-test (push) Failing after 6m2s

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-14 20:04:05 +00:00
parent cca7dd4471
commit 9fc89cdb74

View File

@@ -1699,7 +1699,7 @@ async function exportExcel() {
} }
const today = new Date().toISOString().slice(0, 10) const today = new Date().toISOString().slice(0, 10)
XLSX.writeFile(wb, `精油配方${today}.xlsx`) XLSX.writeFile(wb, `精油配方备份${today}.xlsx`)
ui.showToast('导出成功') ui.showToast('导出成功')
} }