|
@@ -129,15 +129,15 @@ func (a *HelpDocController) Detail(c *gin.Context) {
|
|
item, e := docOb.GetItemByCondition("classify_id=?", pars, "")
|
|
item, e := docOb.GetItemByCondition("classify_id=?", pars, "")
|
|
if e != nil {
|
|
if e != nil {
|
|
if e == utils.ErrNoRow {
|
|
if e == utils.ErrNoRow {
|
|
- resp.SpecificFail("获取失败", "文章未发布, Err: "+e.Error(), c)
|
|
|
|
|
|
+ resp.SpecificFail("获取失败", "文章不存在, Err: "+e.Error(), c)
|
|
return
|
|
return
|
|
}
|
|
}
|
|
resp.FailMsg("获取失败", "获取帮助文档列表失败, Err: "+e.Error(), c)
|
|
resp.FailMsg("获取失败", "获取帮助文档列表失败, Err: "+e.Error(), c)
|
|
return
|
|
return
|
|
}
|
|
}
|
|
|
|
|
|
- if item.Status == 1 {
|
|
|
|
- resp.FailMsg("获取失败", "文章未发布 ", c)
|
|
|
|
|
|
+ if item.Status != 2 {
|
|
|
|
+ resp.SpecificFail("获取失败", "文章未发布 ", c)
|
|
return
|
|
return
|
|
}
|
|
}
|
|
item.Content = html.UnescapeString(item.Content)
|
|
item.Content = html.UnescapeString(item.Content)
|