This website works better with JavaScript.
首頁
探索
說明
登入
EggPlanet
/
egg_admin
關註
3
收藏
0
複製
0
程式碼
問題管理
0
合併請求
0
版本發佈
0
Wiki
Activity
瀏覽代碼
更新
master
huangjiajun
22 小時之前
父節點
c935295371
當前提交
cd247e8b8e
共有
2 個文件被更改
,包括
2 次插入
和
2 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
app/md/md_article.go
+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"`
Id
s
[]string `json:"id
s
"`
}
+ 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("id
s
", req.Id).Delete(&model.Article{})
db.Db.In("id", req.Id
s
).Delete(&model.Article{})
e.OutSuc(c, "success", nil)
return
}
Write
Preview
Loading…
取消
儲存