更新设备导入模版地址

This commit is contained in:
微微一笑
2025-07-19 08:43:58 +08:00
parent e1738a6ea1
commit 1db495b08e

View File

@ -738,7 +738,7 @@ const handleBatchImport = () => {
const downloadTemplate = () => {
// 这里可用 window.open 或 a 标签下载模板
const link = document.createElement('a');
link.href = 'http://120.79.224.186:9000/fys/Equipmentimporttemplate/EquipmentImportTemplate.xlsx';
link.href = 'https://fuyuanshen.com/fys/Equipmentimporttemplate/EquipmentImportTemplate.xlsx';
link.download = '设备数据导入模板.xlsx'; // 可选:指定下载文件名
link.style.display = 'none'; // 隐藏标签
document.body.appendChild(link);