瀏覽代碼

Merge branch 'cygx_12.8' of http://8.136.199.33:3000/hongze/hongze_cygx into debug

xingzai 1 年之前
父節點
當前提交
1cb57f2d88
共有 2 個文件被更改,包括 45 次插入30 次删除
  1. 14 0
      controllers/yanxuan_special.go
  2. 31 30
      models/cygx_yanxuan_special.go

+ 14 - 0
controllers/yanxuan_special.go

@@ -206,6 +206,20 @@ func (this *YanxuanSpecialController) Detail() {
 		resp.CygxYanxuanSpecialItem = *new(models.CygxYanxuanSpecialItem) // 如果内容不可见,就把内容置空
 		resp.HasPermission = 2
 	}
+
+	//如果在web端有样式或者上传了文件,小程序就禁止编辑修改内容
+	hasStyle, err := utils.ArticleHasStyle(item.Content)
+	if err != nil {
+		return
+	}
+	hasImg, err := utils.ArticleHasImgUrl(item.Content)
+	if err != nil {
+		return
+	}
+	if hasStyle || strings.Contains(item.DocUrl, "http") || hasImg {
+		item.ContentHasStyle = true
+	}
+
 	br.Data = resp
 	br.Ret = 200
 	br.Success = true

+ 31 - 30
models/cygx_yanxuan_special.go

@@ -25,36 +25,37 @@ type CygxYanxuanSpecial struct {
 }
 
 type CygxYanxuanSpecialItem struct {
-	Id            int    `orm:"column(id);pk"`
-	UserId        int    // 用户ID
-	CreateTime    string // 创建时间
-	ModifyTime    string // 修改时间
-	PublishTime   string // 提审过审或驳回时间
-	Content       string // 内容
-	Tags          string // 标签
-	Status        int    // 1:未发布,2:审核中 3:已发布 4:驳回
-	ImgUrl        string // 图片链接
-	DocUrl        string // 文档链接
-	SpecialName   string // 专栏名称
-	Introduction  string // 介绍
-	Label         string // 标签
-	NickName      string // 昵称
-	RealName      string // 姓名
-	Mobile        string // 手机号
-	HeadImg       string // 头像
-	BgImg         string // 背景图
-	Reason        string // 理由
-	Title         string // 标题
-	Type          int    // 类型1:笔记,2:观点
-	CollectNum    int
-	MyCollectNum  int
-	IsCollect     int
-	CompanyTags   string
-	IndustryTags  string
-	ContentHasImg int //正文是否包含图片 1包含 0不包含
-	Docs          []Doc
-	Pv            string `description:"Pv"`
-	Uv            string `description:"Uv"`
+	Id              int    `orm:"column(id);pk"`
+	UserId          int    // 用户ID
+	CreateTime      string // 创建时间
+	ModifyTime      string // 修改时间
+	PublishTime     string // 提审过审或驳回时间
+	Content         string // 内容
+	Tags            string // 标签
+	Status          int    // 1:未发布,2:审核中 3:已发布 4:驳回
+	ImgUrl          string // 图片链接
+	DocUrl          string // 文档链接
+	SpecialName     string // 专栏名称
+	Introduction    string // 介绍
+	Label           string // 标签
+	NickName        string // 昵称
+	RealName        string // 姓名
+	Mobile          string // 手机号
+	HeadImg         string // 头像
+	BgImg           string // 背景图
+	Reason          string // 理由
+	Title           string // 标题
+	Type            int    // 类型1:笔记,2:观点
+	CollectNum      int
+	MyCollectNum    int
+	IsCollect       int
+	CompanyTags     string
+	IndustryTags    string
+	ContentHasImg   int  //正文是否包含图片 1包含 0不包含
+	ContentHasStyle bool //正文是否包含格式
+	Docs            []Doc
+	Pv              string `description:"Pv"`
+	Uv              string `description:"Uv"`
 }
 
 type CygxYanxuanSpecialResp struct {