Browse Source

(fixed)7272 导出全部文件名称显示错误

master
ww664853070 2 years ago
parent
commit
7ca7ca1398
  1. 4
      web/client/src/sections/business/containers/performanceReport/performanceSummary.jsx

4
web/client/src/sections/business/containers/performanceReport/performanceSummary.jsx

@ -415,13 +415,13 @@ const AchievementDetails = (props) => {
exportTable = `\uFEFF
<table style='text-alagin:center' border="1">
<tr>
<th colspan="30"><div style="${tableStyle}">储备项目明细</div></th>
<th colspan="30"><div style="${tableStyle}">业绩汇总</div></th>
</tr>
${exportTable}
</table>
`;
let tempStrs = new Blob([exportTable], { type: 'text/xls' })
FileSaver.saveAs(tempStrs, `储备中项目明细${moment().format('YYYY-MM-DD')}.xls`)
FileSaver.saveAs(tempStrs, `业绩汇总表${moment().format('YYYY-MM-DD')}.xls`)
}
}

Loading…
Cancel
Save