Kaynağa Gözat

打包

master
huangjiajun 1 hafta önce
ebeveyn
işleme
986af5f431
3 değiştirilmiş dosya ile 7 ekleme ve 3 silme
  1. +1
    -1
      app/hdl/cloud_bundle/hdl_list.go
  2. +4
    -0
      app/md/md_cloud_bundle.go
  3. +2
    -2
      app/svc/cloud_bundle/svc_list.go

+ 1
- 1
app/hdl/cloud_bundle/hdl_list.go Dosyayı Görüntüle

@@ -42,7 +42,7 @@ func Build(c *gin.Context) {
// @Accept json
// @Produce json
// @param Authorization header string true "验证参数Bearer和token空格拼接"
// @Param req body md.ArticleDelReq true "(分页信息必填)"
// @Param req body md.CloudBundleDelReq true "(分页信息必填)"
// @Success 200 {string} "具体数据"
// @Failure 400 {object} md.Response "具体错误"
// @Router /api/cloudBundle/del [post]


+ 4
- 0
app/md/md_cloud_bundle.go Dosyayı Görüntüle

@@ -93,6 +93,10 @@ type Guide struct {
type AuditClearReq struct {
Os string `json:"os" example:"1-安卓 2-ios"`
}
type CloudBundleDelReq struct {
Ids []string `json:"ids"`
}

type CloudBundleVersion struct {
Type string `json:"type"`
Img string `json:"img"`


+ 2
- 2
app/svc/cloud_bundle/svc_list.go Dosyayı Görüntüle

@@ -175,12 +175,12 @@ func getcurl(url string) (string, error) {
return string(body), nil
}
func Del(c *gin.Context) {
var req *md.ArticleDelReq
var req *md.CloudBundleDelReq
if err := c.ShouldBindJSON(&req); err != nil {
e.OutErr(c, e.ERR_INVALID_ARGS, err)
return
}
db.Db.In("id", req.Id).Delete(&model.CloudBundle{})
db.Db.In("id", req.Ids).Delete(&model.CloudBundle{})
e.OutSuc(c, "success", nil)
return
}


Yükleniyor…
İptal
Kaydet