|
@@ -95,6 +95,9 @@ func (this *SmartReportController) Add() {
|
|
item.State = smart_report.SmartReportStateWaitPublish
|
|
item.State = smart_report.SmartReportStateWaitPublish
|
|
item.CreateTime = time.Now().Local()
|
|
item.CreateTime = time.Now().Local()
|
|
item.ModifyTime = time.Now().Local()
|
|
item.ModifyTime = time.Now().Local()
|
|
|
|
+ item.HeadImg = req.HeadImg
|
|
|
|
+ item.EndImg = req.EndImg
|
|
|
|
+ item.CanvasColor = req.CanvasColor
|
|
// 继承报告
|
|
// 继承报告
|
|
if req.AddType == 2 {
|
|
if req.AddType == 2 {
|
|
ob := new(smart_report.SmartReport)
|
|
ob := new(smart_report.SmartReport)
|
|
@@ -230,7 +233,7 @@ func (this *SmartReportController) Edit() {
|
|
contentModify = true
|
|
contentModify = true
|
|
}
|
|
}
|
|
cols := []string{"ClassifyIdFirst", "ClassifyNameFirst", "ClassifyIdSecond", "ClassifyNameSecond", "Title", "Abstract", "Author",
|
|
cols := []string{"ClassifyIdFirst", "ClassifyNameFirst", "ClassifyIdSecond", "ClassifyNameSecond", "Title", "Abstract", "Author",
|
|
- "Frequency", "Content", "ContentSub", "ContentStruct", "ModifyTime"}
|
|
|
|
|
|
+ "Frequency", "Content", "ContentSub", "ContentStruct", "ModifyTime", "HeadImg", "EndImg", "CanvasColor"}
|
|
item.ClassifyIdFirst = req.ClassifyIdFirst
|
|
item.ClassifyIdFirst = req.ClassifyIdFirst
|
|
item.ClassifyNameFirst = req.ClassifyNameFirst
|
|
item.ClassifyNameFirst = req.ClassifyNameFirst
|
|
item.ClassifyIdSecond = req.ClassifyIdSecond
|
|
item.ClassifyIdSecond = req.ClassifyIdSecond
|
|
@@ -243,6 +246,9 @@ func (this *SmartReportController) Edit() {
|
|
item.ContentSub = subContent
|
|
item.ContentSub = subContent
|
|
item.ContentStruct = req.ContentStruct
|
|
item.ContentStruct = req.ContentStruct
|
|
item.ModifyTime = time.Now().Local()
|
|
item.ModifyTime = time.Now().Local()
|
|
|
|
+ item.HeadImg = req.HeadImg
|
|
|
|
+ item.EndImg = req.EndImg
|
|
|
|
+ item.CanvasColor = req.CanvasColor
|
|
if contentModify {
|
|
if contentModify {
|
|
//fmt.Println(contentModify)
|
|
//fmt.Println(contentModify)
|
|
item.LastModifyAdminId = sysUser.AdminId
|
|
item.LastModifyAdminId = sysUser.AdminId
|
|
@@ -744,7 +750,10 @@ func (this *SmartReportController) SaveContent() {
|
|
item.LastModifyAdminId = sysUser.AdminId
|
|
item.LastModifyAdminId = sysUser.AdminId
|
|
item.LastModifyAdminName = sysUser.RealName
|
|
item.LastModifyAdminName = sysUser.RealName
|
|
item.ModifyTime = time.Now().Local()
|
|
item.ModifyTime = time.Now().Local()
|
|
- cols := []string{"Content", "ContentSub", "ContentStruct", "ContentModifyTime", "LastModifyAdminId", "LastModifyAdminName", "ModifyTime"}
|
|
|
|
|
|
+ item.HeadImg = req.HeadImg
|
|
|
|
+ item.EndImg = req.EndImg
|
|
|
|
+ item.CanvasColor = req.CanvasColor
|
|
|
|
+ cols := []string{"Content", "ContentSub", "ContentStruct", "ContentModifyTime", "LastModifyAdminId", "LastModifyAdminName", "ModifyTime", "HeadImg", "EndImg", "CanvasColor"}
|
|
if e = item.Update(cols); e != nil {
|
|
if e = item.Update(cols); e != nil {
|
|
br.Msg = "操作失败"
|
|
br.Msg = "操作失败"
|
|
br.ErrMsg = "更新报告内容失败"
|
|
br.ErrMsg = "更新报告内容失败"
|
|
@@ -961,7 +970,7 @@ func (this *SmartReportController) List() {
|
|
"smart_report_id", "report_code", "classify_id_first", "classify_name_first", "classify_id_second", "classify_name_second", "add_type",
|
|
"smart_report_id", "report_code", "classify_id_first", "classify_name_first", "classify_id_second", "classify_name_second", "add_type",
|
|
"title", "abstract", "author", "frequency", "stage", "video_url", "video_name", "video_play_seconds", "video_size", "detail_img_url", "detail_pdf_url",
|
|
"title", "abstract", "author", "frequency", "stage", "video_url", "video_name", "video_play_seconds", "video_size", "detail_img_url", "detail_pdf_url",
|
|
"admin_id", "admin_real_name", "state", "publish_time", "pre_publish_time", "pre_msg_send", "msg_is_send", "msg_send_time", "create_time", "modify_time",
|
|
"admin_id", "admin_real_name", "state", "publish_time", "pre_publish_time", "pre_msg_send", "msg_is_send", "msg_send_time", "create_time", "modify_time",
|
|
- "last_modify_admin_id", "last_modify_admin_name", "content_modify_time", "pv", "uv",
|
|
|
|
|
|
+ "last_modify_admin_id", "last_modify_admin_name", "content_modify_time", "pv", "uv", "HeadImg", "EndImg", "CanvasColor",
|
|
}
|
|
}
|
|
list, e := reportOB.GetPageItemsByCondition(condition, pars, fields, "", startSize, params.PageSize)
|
|
list, e := reportOB.GetPageItemsByCondition(condition, pars, fields, "", startSize, params.PageSize)
|
|
if e != nil {
|
|
if e != nil {
|