Browse Source

fix:分享出来的地址pv自增

Roc 8 months ago
parent
commit
b3f179f8b1
2 changed files with 21 additions and 0 deletions
  1. 8 0
      controllers/report_share.go
  2. 13 0
      models/report.go

+ 8 - 0
controllers/report_share.go

@@ -85,6 +85,14 @@ func (this *ReportShareController) Detail() {
 		}
 		report.Abstract = report.Title
 	}
+
+	// 更新pv
+	if e = models.UpdateReportPv(report.Id); e != nil {
+		br.Msg = "获取失败"
+		br.ErrMsg = "更新报告pv失败, Err: " + e.Error()
+		return
+	}
+
 	resp.Report.Report = report
 	resp.Report.ChapterList = reportChapters
 

+ 13 - 0
models/report.go

@@ -75,3 +75,16 @@ type ReportItem struct {
 	*Report
 	ChapterList []*ReportChapter
 }
+
+// UpdateReportPv
+// @Description: 研报pv自增
+// @author: Roc
+// @datetime 2024-07-19 15:46:58
+// @param reportId int
+// @return err error
+func UpdateReportPv(reportId int) (err error) {
+	o := orm.NewOrm()
+	sql := `UPDATE report SET pv = pv + 1 WHERE id = ?`
+	_, err = o.Raw(sql, reportId).Exec()
+	return
+}