huangjiajun пре 22 часа
родитељ
комит
cd247e8b8e
2 измењених фајлова са 2 додато и 2 уклоњено
  1. +1
    -1
      app/md/md_article.go
  2. +1
    -1
      app/svc/article/svc_list.go

+ 1
- 1
app/md/md_article.go Прегледај датотеку

@@ -60,5 +60,5 @@ type ArticleSaveReq struct {
Sort string `json:"sort"`
}
type ArticleDelReq struct {
Id []string `json:"id"`
Ids []string `json:"ids"`
}

+ 1
- 1
app/svc/article/svc_list.go Прегледај датотеку

@@ -120,7 +120,7 @@ func Del(c *gin.Context) {
e.OutErr(c, e.ERR_INVALID_ARGS, err)
return
}
db.Db.In("ids", req.Id).Delete(&model.Article{})
db.Db.In("id", req.Ids).Delete(&model.Article{})
e.OutSuc(c, "success", nil)
return
}

Loading…
Откажи
Сачувај