提交系统管理web端代码

This commit is contained in:
lixiaoyuan
2025-07-18 09:09:30 +08:00
parent 7b3f32f334
commit 387237c81c
74 changed files with 1997 additions and 918 deletions

View File

@@ -204,7 +204,7 @@ function initEchartCurve(id, seriesItems) {
option.legend.data = seriesItems
option.series = []
seriesItems.forEach(item => {
option.series.push({ name: item, type: 'line', smooth: true, symbolSize: 0, data: [] })
option.series.push({ name: item, type: 'line', smooth: false, symbolSize: 0, data: [] })
})
echart.setOption(option)
return echart