Browse Source

Merge remote-tracking branch 'origin/master'

master
nelson 2 years ago
parent
commit
ec380cb775
  1. 2
      src/components/charts/UpLow.vue

2
src/components/charts/UpLow.vue

@ -40,7 +40,7 @@ const init = () => {
let maxVal:number = chgFlag ? 5200 : 0
if (!chgFlag) {
maxVal = chgContent.value.map(x => x.limitUpCount + x.limitLowCount).sort((a, b) => b - a).at(0)
maxVal = chgContent.value.map(x => x.limitUpCount + x.limitLowCount).sort((a, b) => a - b).pop()
}
const myChart = echarts.init(UpLow.value)

Loading…
Cancel
Save