...
|
...
|
@@ -188,9 +188,9 @@ func (l *SystemCreateArticleLogic) validate(req *types.SystemArticleCreateReques |
|
|
return errors.New("标题最多只能输入64字")
|
|
|
}
|
|
|
//文章内容
|
|
|
if utf8.RuneCountInString(req.Content) > 1000 {
|
|
|
return errors.New("内容最多只能输入1000字")
|
|
|
}
|
|
|
//if utf8.RuneCountInString(req.Content) > 1000 {
|
|
|
// return errors.New("内容最多只能输入1000字")
|
|
|
//}
|
|
|
//图片
|
|
|
if len(req.Images) > 9 {
|
|
|
return errors.New("图片数量最多9张")
|
...
|
...
|
|