|
@@ -242,17 +242,7 @@ func (this *ChartController) ChartInfoRefresh() {
|
|
|
// @router /dw/collectCancel [post]
|
|
|
func (this *ChartController) CollectCancel() {
|
|
|
br := new(models.BaseResponse).Init()
|
|
|
- chartId := 0
|
|
|
defer func() {
|
|
|
- // 添加日志
|
|
|
- if chartId > 0 {
|
|
|
- shareChartRefreshLogInfo := &models.ShareChartRefreshLog{
|
|
|
- Ip: this.Ctx.Input.IP(),
|
|
|
- ChartId: chartId,
|
|
|
- CreateTime: time.Now(),
|
|
|
- }
|
|
|
- models.AddShareChartRefreshLog(shareChartRefreshLogInfo)
|
|
|
- }
|
|
|
this.Data["json"] = br
|
|
|
this.ServeJSON()
|
|
|
}()
|
|
@@ -280,7 +270,7 @@ func (this *ChartController) CollectCancel() {
|
|
|
return
|
|
|
}
|
|
|
if result.Ret != 200 {
|
|
|
- br.Msg = "取消收藏失败"
|
|
|
+ br.Msg = result.Msg
|
|
|
br.ErrMsg = "取消收藏失败,Err:" + result.ErrMsg
|
|
|
return
|
|
|
}
|
|
@@ -298,17 +288,7 @@ func (this *ChartController) CollectCancel() {
|
|
|
// @router /dw/collect [post]
|
|
|
func (this *ChartController) Collect() {
|
|
|
br := new(models.BaseResponse).Init()
|
|
|
- chartId := 0
|
|
|
defer func() {
|
|
|
- // 添加日志
|
|
|
- if chartId > 0 {
|
|
|
- shareChartRefreshLogInfo := &models.ShareChartRefreshLog{
|
|
|
- Ip: this.Ctx.Input.IP(),
|
|
|
- ChartId: chartId,
|
|
|
- CreateTime: time.Now(),
|
|
|
- }
|
|
|
- models.AddShareChartRefreshLog(shareChartRefreshLogInfo)
|
|
|
- }
|
|
|
this.Data["json"] = br
|
|
|
this.ServeJSON()
|
|
|
}()
|
|
@@ -349,7 +329,7 @@ func (this *ChartController) Collect() {
|
|
|
return
|
|
|
}
|
|
|
if result.Ret != 200 {
|
|
|
- br.Msg = "收藏失败"
|
|
|
+ br.Msg = result.Msg
|
|
|
br.ErrMsg = "收藏失败,Err:" + result.ErrMsg
|
|
|
return
|
|
|
}
|