Browse Source

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

zqbao 1 tháng trước cách đây
mục cha
commit
39d13cd82f
1 tập tin đã thay đổi với 5 bổ sung1 xóa
  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)
 		}
 	}