|
@@ -54,6 +54,15 @@ func (this *BaseAuthMobileController) List() {
|
|
|
}
|
|
|
startSize = utils.StartIndex(currentIndex, pageSize)
|
|
|
resp := new(models.SpecialListResp)
|
|
|
+ if sysUser.CompanyId == utils.GAO_YI_ZI_CHAN_COMPANY_ID {
|
|
|
+ resp.List = make([]*models.CygxYanxuanSpecialCenterResp, 0)
|
|
|
+ resp.Paging = paging.GetPaging(currentIndex, pageSize, 0)
|
|
|
+ br.Ret = 200
|
|
|
+ br.Success = true
|
|
|
+ br.Msg = "获取成功"
|
|
|
+ br.Data = resp
|
|
|
+ return
|
|
|
+ }
|
|
|
var condition string
|
|
|
var pars []interface{}
|
|
|
|
|
@@ -176,6 +185,22 @@ func (this *BaseAuthMobileController) Detail() {
|
|
|
return
|
|
|
}
|
|
|
userId := user.UserId
|
|
|
+ var resp models.CygxYanxuanSpecialResp
|
|
|
+ if user.CompanyId == utils.GAO_YI_ZI_CHAN_COMPANY_ID {
|
|
|
+ hasPermission, err := services.GetUserDetailPermissionCode(user.UserId, user.CompanyId)
|
|
|
+ if err != nil && err.Error() != utils.ErrNoRow() {
|
|
|
+ br.Msg = "获取信息失败"
|
|
|
+ br.ErrMsg = "获取信息失败,GetUserDetailPermissionCode Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ resp.HasPermission = hasPermission
|
|
|
+ br.Ret = 200
|
|
|
+ br.Success = true
|
|
|
+ br.Msg = "获取成功"
|
|
|
+ br.Data = resp
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
item, tmpErr := models.GetYanxuanSpecialById(specialId, userId)
|
|
|
if tmpErr != nil {
|
|
|
br.Msg = "获取失败"
|
|
@@ -206,7 +231,7 @@ func (this *BaseAuthMobileController) Detail() {
|
|
|
if userId == 0 {
|
|
|
item.Content = utils.InterceptHtmlLength(item.Content, 150)
|
|
|
}
|
|
|
- var resp models.CygxYanxuanSpecialResp
|
|
|
+
|
|
|
resp.HasPermission = 1
|
|
|
resp.CygxYanxuanSpecialItem = *item
|
|
|
if item.DocUrl != "" {
|
|
@@ -1039,8 +1064,17 @@ func (this *YanxuanSpecialController) AuthorList() {
|
|
|
startSize = utils.StartIndex(currentIndex, pageSize)
|
|
|
var condition string
|
|
|
var pars []interface{}
|
|
|
+ resp := new(models.SpecialAuthorListResp)
|
|
|
+ if sysUser.CompanyId == utils.GAO_YI_ZI_CHAN_COMPANY_ID {
|
|
|
+ resp.List = make([]*models.CygxYanxuanSpecialAuthorItem, 0)
|
|
|
+ resp.Paging = paging.GetPaging(currentIndex, pageSize, 0)
|
|
|
+ br.Ret = 200
|
|
|
+ br.Success = true
|
|
|
+ br.Msg = "获取成功"
|
|
|
+ br.Data = resp
|
|
|
+ return
|
|
|
+ }
|
|
|
condition += ` AND a.nick_name <> '' `
|
|
|
-
|
|
|
total, err := models.GetCygxYanxuanSpecialAuthorCount(condition, pars)
|
|
|
if err != nil {
|
|
|
br.Msg = "获取失败"
|
|
@@ -1065,7 +1099,7 @@ func (this *YanxuanSpecialController) AuthorList() {
|
|
|
for _, v := range list {
|
|
|
v.YanxuanSpecialCenter = bestNew[v.UserId]
|
|
|
}
|
|
|
- resp := new(models.SpecialAuthorListResp)
|
|
|
+
|
|
|
isAuthor, _ := services.GetYanxuanSpecialAuthorInfo(sysUser) //用户是否没开通研选专栏以及,专栏信息是否完善
|
|
|
resp.MomentsImg = services.GetSpecialAuthorListMomentsImg() //获取作者列表朋友圈分享封面图
|
|
|
resp.IsAuthor = isAuthor
|