作者 yangfu

修正序列化错误

... ... @@ -340,8 +340,10 @@ func TemplateList(uid, companyId int64, request *protocol.TemplateListRequest) (
// log.Error(err.Error())
// return
//}
if e := json.Unmarshal([]byte(temp.VisibleObject), &vObj); e != nil {
log.Error("%v %v %v", temp.Id, temp.VisibleObject, e.Error())
if len(temp.VisibleObject) > 0 {
if e := json.Unmarshal([]byte(temp.VisibleObject), &vObj); e != nil {
log.Error("%v %v %v", temp.Id, temp.VisibleObject, e.Error())
}
}
tempItem := &protocol.TemplateItem{
Id: temp.Id,
... ...