修改应用exe编译环境Win32->x64

This commit is contained in:
lixiaoyuan
2025-08-19 17:16:54 +08:00
parent 697193a7aa
commit 5de7687bcc
55 changed files with 326 additions and 161 deletions

View File

@@ -26,3 +26,11 @@ chartDef.forEach((item) => {
updateEchartCurve(item.echart, i, getRandomCurveData(300 * (i + 1), 400 * (i + 1)))
}
})
window.onresize = () => {
chartDef.forEach(item => {
if (item.echart) item.echart.resize()
})
}