Explorar o código

资金流水及历史分页从1开始传

gitmuchinfo %!s(int64=3) %!d(string=hai) anos
pai
achega
cf92cd4077
Modificáronse 1 ficheiros con 4 adicións e 2 borrados
  1. 4 2
      controllers/taaccount/taaccount.go

+ 4 - 2
controllers/taaccount/taaccount.go

@@ -180,7 +180,8 @@ func QueryAmountLog(c *gin.Context) {
 		// 分页
 		rst := make([]QueryAmountLogRsp, 0)
 		// 开始上标
-		start := req.Page * req.PageSize
+		// 终端分页1开始
+		start := (req.Page - 1) * req.PageSize
 		// 结束下标
 		end := start + req.PageSize
 
@@ -290,7 +291,8 @@ func QueryHisAmountLog(c *gin.Context) {
 		// 分页
 		rst := make([]QueryHisAmountLogRsp, 0)
 		// 开始上标
-		start := req.Page * req.PageSize
+		// 终端分页1开始
+		start := (req.Page - 1) * req.PageSize
 		// 结束下标
 		end := start + req.PageSize