|
@@ -576,7 +576,7 @@ func BarChartData(edbInfoMapping *models.ChartEdbInfoMapping, futureGoodMappingL
|
|
|
mList := make([]int, 0) // 间隔月份
|
|
|
indexList := make([]int, 0)
|
|
|
if regionType == `国内` {
|
|
|
- for i := currMonth + 1; i < 12; i++ {
|
|
|
+ for i := currMonth + 1; i <= 12; i++ {
|
|
|
indexList = append(indexList, int(i))
|
|
|
mList = append(mList, int(i-currMonth))
|
|
|
}
|