瀏覽代碼

更新

master
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…
取消
儲存