|
@@ -936,3 +936,55 @@ func (this *YanxuanSpecialController) AuthorUpdate() {
|
|
br.Success = true
|
|
br.Success = true
|
|
br.Msg = "修改成功"
|
|
br.Msg = "修改成功"
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+// @Title 作者列表
|
|
|
|
+// @Description 作者列表
|
|
|
|
+// @Param KeyWord query string false "搜索关键词"
|
|
|
|
+// @Success 200 {object} models.AddEnglishReportResp
|
|
|
|
+// @router /yanxuan_special/author/search [get]
|
|
|
|
+func (this *YanxuanSpecialController) AuthorSearch() {
|
|
|
|
+ br := new(models.BaseResponse).Init()
|
|
|
|
+ defer func() {
|
|
|
|
+ this.Data["json"] = br
|
|
|
|
+ this.ServeJSON()
|
|
|
|
+ }()
|
|
|
|
+ sysUser := this.SysUser
|
|
|
|
+ if sysUser == nil {
|
|
|
|
+ br.Msg = "请登录"
|
|
|
|
+ br.ErrMsg = "请登录,SysUser Is Empty"
|
|
|
|
+ br.Ret = 408
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ keyWord := this.GetString("KeyWord")
|
|
|
|
+ var condition string
|
|
|
|
+ var pars []interface{}
|
|
|
|
+
|
|
|
|
+ //关键词搜索
|
|
|
|
+ if keyWord != "" {
|
|
|
|
+ keyWord = "%" + keyWord + "%"
|
|
|
|
+ condition += ` AND art.nick_name like ? `
|
|
|
|
+ pars = append(pars, keyWord)
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ list, tmpErr := cygx.GetYanxuanSpecialAuthorList(condition, pars, 0, 99)
|
|
|
|
+ if tmpErr != nil {
|
|
|
|
+ br.Msg = "获取失败"
|
|
|
|
+ br.ErrMsg = "获取失败, Err:" + tmpErr.Error()
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ resp := new(cygx.CygxYanxuanSpecialKeyWordListReesp)
|
|
|
|
+ if len(list) > 0 {
|
|
|
|
+ for _, v := range list {
|
|
|
|
+ item := new(cygx.CygxYanxuanSpecialKeyWordReesp)
|
|
|
|
+ item.KeyWord = v.NickName
|
|
|
|
+ resp.List = append(resp.List, item)
|
|
|
|
+ }
|
|
|
|
+ } else {
|
|
|
|
+ resp.List = make([]*cygx.CygxYanxuanSpecialKeyWordReesp, 0)
|
|
|
|
+ }
|
|
|
|
+ br.Data = resp
|
|
|
|
+ br.Ret = 200
|
|
|
|
+ br.Success = true
|
|
|
|
+ br.Msg = "获取成功"
|
|
|
|
+}
|