|
@@ -140,9 +140,9 @@ export default {
|
|
|
{
|
|
|
name: "夏季",
|
|
|
data: this.hours.map((item) => {
|
|
|
- const idx = this.list.autum.findIndex((i) => i.xs === item);
|
|
|
+ const idx = this.list.summer.findIndex((i) => i.xs === item);
|
|
|
if (idx >= 0) {
|
|
|
- return [`${item}:00`, this.list.autum[idx].sl];
|
|
|
+ return [`${item}:00`, this.list.summer[idx].sl];
|
|
|
} else {
|
|
|
return [`${item}:00`, 0];
|
|
|
}
|
|
@@ -153,9 +153,9 @@ export default {
|
|
|
{
|
|
|
name: "秋季",
|
|
|
data: this.hours.map((item) => {
|
|
|
- const idx = this.list.summer.findIndex((i) => i.xs === item);
|
|
|
+ const idx = this.list.autum.findIndex((i) => i.xs === item);
|
|
|
if (idx >= 0) {
|
|
|
- return [`${item}:00`, this.list.summer[idx].sl];
|
|
|
+ return [`${item}:00`, this.list.autum[idx].sl];
|
|
|
} else {
|
|
|
return [`${item}:00`, 0];
|
|
|
}
|