浏览代码

fix selectTime

animeic 2 年之前
父节点
当前提交
f33ff7342d
共有 2 个文件被更改,包括 5 次插入1 次删除
  1. 二进制
      3dshow-customer/__debug_bin
  2. 5 1
      3dshow-customer/api/product.go

二进制
3dshow-customer/__debug_bin


+ 5 - 1
3dshow-customer/api/product.go

@@ -63,6 +63,8 @@ func ProductList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
 
 	// selectTime
 	selectTime := time.Now().Format("2006-01")
+
+	// now.AddDate(0, int(-now.Month()) + month + 1, -now.Day()).Format("200612")
 	if _, ok := query["selectTime"]; ok {
 		timeSlice := strings.Split(query["selectTime"].(string), ".")
 		selectTime = strings.Join(timeSlice, "-")
@@ -70,7 +72,9 @@ func ProductList(c *gin.Context, apictx *ApiSession) (interface{}, error) {
 	}
 	timeStr := fmt.Sprintf("%s%s", selectTime, "-01 00:00:00")
 	formatTime, _ := time.ParseInLocation("2006-01-02 15:04:05", timeStr, time.Local)
-	query["onsaleTime"] = bson.M{"$lte": formatTime}
+	// 下个月第一天之前的数据
+	addOneMothTime := formatTime.AddDate(0, 1, 0)
+	query["onsaleTime"] = bson.M{"$lte": addOneMothTime}
 
 	// 查询数据
 	if _, ok := query["supplyId"]; !ok {