|
@@ -393,7 +393,7 @@ func (this *SmartReportController) Detail() {
|
|
|
headResource, err := smart_report.GetResourceItemById(resp.HeadResourceId)
|
|
|
if err != nil {
|
|
|
br.Msg = "操作失败"
|
|
|
- br.ErrMsg = "获取资源库版头失败, Err: " + e.Error()
|
|
|
+ br.ErrMsg = "获取资源库版头失败, Err: " + err.Error()
|
|
|
return
|
|
|
}
|
|
|
resp.HeadImg = headResource.ImgUrl
|
|
@@ -404,7 +404,7 @@ func (this *SmartReportController) Detail() {
|
|
|
endResource, err := smart_report.GetResourceItemById(resp.EndResourceId)
|
|
|
if err != nil {
|
|
|
br.Msg = "操作失败"
|
|
|
- br.ErrMsg = "获取资源库版头失败, Err: " + e.Error()
|
|
|
+ br.ErrMsg = "获取资源库版头失败, Err: " + err.Error()
|
|
|
return
|
|
|
}
|
|
|
resp.EndImg = endResource.ImgUrl
|