|
@@ -8,6 +8,7 @@ import (
|
|
|
"fmt"
|
|
|
"github.com/beego/beego/v2/core/logs"
|
|
|
"github.com/rdlucklib/rdluck_tools/paging"
|
|
|
+ "html"
|
|
|
)
|
|
|
|
|
|
func DocumentClassifyList(userId int) ([]models.ClassifyVO, error) {
|
|
@@ -327,7 +328,7 @@ func DocumentReportDetail(outsideReportId int) (*document_manage_model.OutsideRe
|
|
|
Abstract: outsideReport.Abstract,
|
|
|
ClassifyId: outsideReport.ClassifyId,
|
|
|
ClassifyName: outsideReport.ClassifyName,
|
|
|
- Content: outsideReport.Content,
|
|
|
+ Content: html.UnescapeString(outsideReport.Content),
|
|
|
SysUserId: outsideReport.SysUserId,
|
|
|
SysUserName: outsideReport.SysUserName,
|
|
|
CreateTime: outsideReport.CreateTime,
|