作者 yangfu

Merge remote-tracking branch 'origin/dev' into test

... ... @@ -499,7 +499,7 @@ func ClearEmptyForm(inputFormList []*Form) (FormList []*Form) {
type Speech struct {
Path string `json:"path"`
Duration int `json:"duration"`
VideoId string `json:"videoId"`
VideoId string `json:"-"` //videoId
}
//图片
... ... @@ -507,7 +507,7 @@ type Picture struct {
Path string `json:"path"`
W int `json:"w"`
H int `json:"h"`
ImageId string `json:"imageId"`
ImageId string `json:"-"` //imageId
}
//视频
... ... @@ -515,7 +515,7 @@ type Video struct {
Path string `json:"path"`
Cover Cover `json:"cover"` //封面
Duration int `json:"duration"`
VideoId string `json:"videoId"`
VideoId string `json:"-"` //videoId
}
//审批配置
... ...
... ... @@ -213,7 +213,7 @@ func SetChanceItem(header *protocol.RequestHeader, chance protocol.CommChanceIte
}
if chance.Status == models.ChanceStatusClose { //机会关闭
chanceStatus = protocol.ChanceStatusClose
return
//return
}
item = protocol.ChanceItem{
... ... @@ -363,6 +363,7 @@ func GetCheckQuestionsByChanceCheckResult(header *protocol.RequestHeader, id int
}
if c.CheckPid == 0 {
item.Title = fmt.Sprintf("%v、%v", groupIdx, c.CheckItem)
groupIdx++
} else {
item.Title = c.CheckItem
}
... ...