封装基础数据操作,错误返回
This commit is contained in:
parent
34a7a78894
commit
f1a968c3a2
|
@ -12,7 +12,6 @@ func Login(c *gin.Context) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func UserList(c *gin.Context) {
|
func UserList(c *gin.Context) {
|
||||||
|
|
||||||
request := controllers.GetRequest(c).(backend.UserListRequest)
|
request := controllers.GetRequest(c).(backend.UserListRequest)
|
||||||
where := map[string]interface{}{
|
where := map[string]interface{}{
|
||||||
"Mobile": request.Mobile,
|
"Mobile": request.Mobile,
|
||||||
|
|
|
@ -59,7 +59,7 @@ func ValidateRequest() gin.HandlerFunc {
|
||||||
return func(c *gin.Context) {
|
return func(c *gin.Context) {
|
||||||
var path = c.Request.RequestURI
|
var path = c.Request.RequestURI
|
||||||
var handler func() interface{}
|
var handler func() interface{}
|
||||||
if strings.Index(path, "api") >= 0 {
|
if strings.Index(path, "admin") >= 0 {
|
||||||
handler = requestmapping.BackendRequestMap[path]
|
handler = requestmapping.BackendRequestMap[path]
|
||||||
} else {
|
} else {
|
||||||
handler = requestmapping.FrontRequestMap[path]
|
handler = requestmapping.FrontRequestMap[path]
|
||||||
|
|
|
@ -18,9 +18,11 @@ func GetListByWhere(where map[string]interface{}, page int, limit int) (count in
|
||||||
conn := builder.NewCond()
|
conn := builder.NewCond()
|
||||||
UserListInfo := []userinfomodel.UserInfo{}
|
UserListInfo := []userinfomodel.UserInfo{}
|
||||||
for k, v := range where {
|
for k, v := range where {
|
||||||
if v != "" {
|
if v.(string) == "" || v.(float64) == 0 {
|
||||||
conn = conn.And(builder.Like{k, fmt.Sprint(v)})
|
continue
|
||||||
}
|
}
|
||||||
|
builder.NewCond()
|
||||||
|
conn = conn.And(builder.Like{k, fmt.Sprint(v)})
|
||||||
}
|
}
|
||||||
session := userinfomodel.GetInstance().GetDb().Where(conn)
|
session := userinfomodel.GetInstance().GetDb().Where(conn)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue