提交: 环比同比,图标数据反了问题
This commit is contained in:
parent
8049503c09
commit
509576962e
|
@ -168,8 +168,8 @@ export default {
|
|||
if (list && list.length > 0) {
|
||||
list.forEach((v) => {
|
||||
xAxis.push(v["date"]);
|
||||
seriesFast.push(v["currentPeriodValue"]);
|
||||
seriesLast.push(v["homochronousValue"]);
|
||||
seriesFast.push(v["homochronousValue"]);
|
||||
seriesLast.push(v["currentPeriodValue"]);
|
||||
});
|
||||
} else {
|
||||
for (let i = 0; i < 12; i++) {
|
||||
|
|
|
@ -158,8 +158,8 @@ export default {
|
|||
if (list && list.length > 0) {
|
||||
list.forEach((v) => {
|
||||
xAxis.push(v["date"]);
|
||||
seriesFast.push(v["currentPeriodValue"]);
|
||||
seriesLast.push(v["homochronousValue"]);
|
||||
seriesFast.push(v["homochronousValue"]);
|
||||
seriesLast.push(v["currentPeriodValue"]);
|
||||
});
|
||||
} else {
|
||||
for (let i = 0; i < 12; i++) {
|
||||
|
|
Loading…
Reference in New Issue