浏览代码

分页错误

xyxie 1 周之前
父节点
当前提交
a2896b0105
共有 1 个文件被更改,包括 5 次插入5 次删除
  1. 5 5
      services/chart_info.go

+ 5 - 5
services/chart_info.go

@@ -3,7 +3,7 @@ package services
 import (
 	"context"
 	"encoding/json"
-	"eta/eta_forum_task/models"	
+	"eta/eta_forum_task/models"
 	"eta/eta_forum_task/services/alarm_msg"
 	"eta/eta_forum_task/services/eta_forum"
 	"eta/eta_forum_task/utils"
@@ -312,7 +312,7 @@ func ChartInfoSaveBatch() (err error) {
 		success := 0
 
 		// 循环更新100个图表数据
-		for i := 0; offset < total; i++ {
+		for i := 0; offset <= total; i++ {
 			// 查询需要更新的图表信息
 			chartInfos, e := models.GetChartInfoListByCondition(condition, []interface{}{}, offset, pageSize)
 			if e != nil {
@@ -337,7 +337,7 @@ func ChartInfoSaveBatch() (err error) {
 				success += 1
 			}
 
-			offset = (i + 1) * pageSize
+			offset += pageSize
 		}
 		utils.FileLog.Info("更新图表数据完成, 更新图表数据总数:", success)
 	}
@@ -379,7 +379,7 @@ func ChartInfoSaveBatch() (err error) {
 	success := 0
 
 	// 循环更新100个图表数据
-	for i := 0; offset < total; i++ {
+	for i := 0; offset <= total; i++ {
 		// 查询需要更新的图表信息
 		chartInfos, e := models.GetChartInfoListByCondition(condition, []interface{}{chartClassifyIdList}, offset, pageSize)
 		if e != nil {
@@ -404,7 +404,7 @@ func ChartInfoSaveBatch() (err error) {
 			success += 1
 		}
 
-		offset = (i + 1) * pageSize
+		offset += pageSize
 	}
 	utils.FileLog.Info("上传图表数据完成, 上传图表数据总数:", success)