正在显示
1 个修改的文件
包含
2 行增加
和
0 行删除
@@ -310,10 +310,12 @@ func GetBulletin(id int, companyId int64, request *protocol.GetBulletinRequest) | @@ -310,10 +310,12 @@ func GetBulletin(id int, companyId int64, request *protocol.GetBulletinRequest) | ||
310 | Type: int(question.Type), | 310 | Type: int(question.Type), |
311 | Title: question.Title, | 311 | Title: question.Title, |
312 | } | 312 | } |
313 | + if len(question.Content) > 0 { | ||
313 | if err = json.Unmarshal([]byte(question.Content), &rsp.Question.Content); err != nil { | 314 | if err = json.Unmarshal([]byte(question.Content), &rsp.Question.Content); err != nil { |
314 | log.Error(err.Error()) | 315 | log.Error(err.Error()) |
315 | return | 316 | return |
316 | } | 317 | } |
318 | + } | ||
317 | for i := range rsp.Question.Content { | 319 | for i := range rsp.Question.Content { |
318 | if rsp.Question.Content[i].Id == -1 && len(rsp.Question.Content[i].Content) == 0 { | 320 | if rsp.Question.Content[i].Id == -1 && len(rsp.Question.Content[i].Content) == 0 { |
319 | rsp.Question.Content[i].Content = "其他" | 321 | rsp.Question.Content[i].Content = "其他" |
-
请 注册 或 登录 后发表评论