提交 ffcb2581 编写于 作者: X xiaomibaghb

优化GetUserInfoList逻辑

上级 35eaa483
...@@ -71,13 +71,9 @@ func GetUserInfoList(info request.PageInfo) (err error, list interface{}, total ...@@ -71,13 +71,9 @@ func GetUserInfoList(info request.PageInfo) (err error, list interface{}, total
limit := info.PageSize limit := info.PageSize
offset := info.PageSize * (info.Page - 1) offset := info.PageSize * (info.Page - 1)
db := global.GVA_DB db := global.GVA_DB
if err != nil { var userList []model.SysUser
return err = db.Limit(limit).Offset(offset).Preload("Authority").Find(&userList).Error
} else { return err, userList, total
var userList []model.SysUser
err = db.Limit(limit).Offset(offset).Preload("Authority").Find(&userList).Error
return err, userList, total
}
} }
// @title SetUserAuthority // @title SetUserAuthority
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册