🎨 优化问题列表接口

This commit is contained in:
2022-06-02 16:21:08 +08:00
parent 6945e6db93
commit 991165125f
2 changed files with 3 additions and 5 deletions

View File

@@ -5,7 +5,6 @@ import (
"online_code/core"
"online_code/models/param"
"online_code/repository"
"online_code/utils"
)
type problemApi struct{}
@@ -26,8 +25,7 @@ func (problemApi) GetProbleList(ctx *gin.Context) {
core.R(ctx).FailWithMessage("获取题目列表失败: " + err.Error())
return
}
// 计算总页码
totalPage := utils.GenTotalPage(count, p.Size)
// 返回结果
core.R(ctx).OkWithData(core.PageData{Current: p.Current, Size: p.Size, Total: count, TotalPage: totalPage, Records: records})
core.R(ctx).OkDataPage(count, core.PageData{Current: p.Current, Size: p.Size, Total: count, Records: records})
}