Selaa lähdekoodia

fix:历史图库数据自定义时间区间

zqbao 1 kuukausi sitten
vanhempi
commit
39d13cd82f
1 muutettua tiedostoa jossa 5 lisäystä ja 1 poistoa
  1. 5 1
      utils/common.go

+ 5 - 1
utils/common.go

@@ -1813,7 +1813,11 @@ func GetDateByDateTypeV2(dateType int, tmpStartDate, tmpEndDate string, startYea
 			startDate = startDate + "-01"
 		}
 		if strings.Count(endDate, "-") == 1 {
-			endDate = endDate + "-01"
+			endTime, err := time.Parse(FormatYearMonthDate, endDate)
+			if err != nil {
+				return
+			}
+			endDate = endTime.AddDate(0, 1, -1).Format(FormatDate)
 		}
 	}