feat: 统一分页表格组件、修复系统配置无法配置单个属性

This commit is contained in:
meilin.huang
2023-06-28 21:35:03 +08:00
parent 0d155d592b
commit e2c929aae1
21 changed files with 1151 additions and 822 deletions

View File

@@ -20,7 +20,7 @@ type Role struct {
func (r *Role) Roles(rc *req.Ctx) {
g := rc.GinCtx
condition := &entity.Role{}
condition := &entity.Role{Name: g.Query("name")}
rc.ResData = r.RoleApp.GetPageList(condition, ginx.GetPageParam(g), new([]entity.Role))
}