fix: warning: "Breif" is a misspelling of "Brief"

pull/35/head
1005281342 2 years ago
parent c9914c84ad
commit 42203f1cdb

@ -20,7 +20,7 @@ type Message struct {
SenderUserID int64 `json:"sender_user_id"`
ReceiverUserID int64 `json:"receiver_user_id"`
Type MessageT `json:"type"`
Breif string `json:"breif"`
Brief string `json:"brief"`
Content string `json:"content"`
PostID int64 `json:"post_id"`
CommentID int64 `json:"comment_id"`
@ -34,7 +34,7 @@ type MessageFormated struct {
SenderUser *UserFormated `json:"sender_user"`
ReceiverUserID int64 `json:"receiver_user_id"`
Type MessageT `json:"type"`
Breif string `json:"breif"`
Brief string `json:"brief"`
Content string `json:"content"`
PostID int64 `json:"post_id"`
Post *PostFormated `json:"post"`
@ -57,7 +57,7 @@ func (m *Message) Format() *MessageFormated {
SenderUser: &UserFormated{},
ReceiverUserID: m.ReceiverUserID,
Type: m.Type,
Breif: m.Breif,
Brief: m.Brief,
Content: m.Content,
PostID: m.PostID,
Post: &PostFormated{},

@ -86,7 +86,7 @@ func SendUserWhisper(c *gin.Context) {
SenderUserID: userID.(int64),
ReceiverUserID: param.UserID,
Type: model.MESSAGE_WHISPER,
Breif: "给你发送新私信了",
Brief: "给你发送新私信了",
Content: param.Content,
})

@ -145,7 +145,7 @@ func (svc *Service) CreatePostComment(userID int64, param CommentCreationReq) (*
SenderUserID: userID,
ReceiverUserID: postMaster.ID,
Type: model.MESSAGE_COMMENT,
Breif: "在泡泡中评论了你",
Brief: "在泡泡中评论了你",
PostID: post.ID,
CommentID: comment.ID,
})
@ -161,7 +161,7 @@ func (svc *Service) CreatePostComment(userID int64, param CommentCreationReq) (*
SenderUserID: userID,
ReceiverUserID: user.ID,
Type: model.MESSAGE_COMMENT,
Breif: "在泡泡评论中@了你",
Brief: "在泡泡评论中@了你",
PostID: post.ID,
CommentID: comment.ID,
})
@ -246,7 +246,7 @@ func (svc *Service) CreatePostCommentReply(commentID int64, content string, user
SenderUserID: userID,
ReceiverUserID: commentMaster.ID,
Type: model.MESSAGE_REPLY,
Breif: "在泡泡评论下回复了你",
Brief: "在泡泡评论下回复了你",
PostID: post.ID,
CommentID: comment.ID,
ReplyID: reply.ID,
@ -258,7 +258,7 @@ func (svc *Service) CreatePostCommentReply(commentID int64, content string, user
SenderUserID: userID,
ReceiverUserID: postMaster.ID,
Type: model.MESSAGE_REPLY,
Breif: "在泡泡评论下发布了新回复",
Brief: "在泡泡评论下发布了新回复",
PostID: post.ID,
CommentID: comment.ID,
ReplyID: reply.ID,
@ -272,7 +272,7 @@ func (svc *Service) CreatePostCommentReply(commentID int64, content string, user
SenderUserID: userID,
ReceiverUserID: user.ID,
Type: model.MESSAGE_REPLY,
Breif: "在泡泡评论的回复中@了你",
Brief: "在泡泡评论的回复中@了你",
PostID: post.ID,
CommentID: comment.ID,
ReplyID: reply.ID,

@ -125,7 +125,7 @@ func (svc *Service) CreatePost(userID int64, param PostCreationReq) (*model.Post
SenderUserID: userID,
ReceiverUserID: user.ID,
Type: model.MESSAGE_POST,
Breif: "在新发布的泡泡动态中@了你",
Brief: "在新发布的泡泡动态中@了你",
PostID: post.ID,
})
}

@ -111,7 +111,7 @@ CREATE TABLE `p_message` (
`sender_user_id` bigint unsigned NOT NULL DEFAULT '0' COMMENT '发送方用户ID',
`receiver_user_id` bigint unsigned NOT NULL DEFAULT '0' COMMENT '接收方用户ID',
`type` tinyint unsigned NOT NULL DEFAULT '1' COMMENT '通知类型1动态2评论3回复4私信99系统通知',
`breif` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '摘要说明',
`brief` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '摘要说明',
`content` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT '详细内容',
`post_id` bigint unsigned NOT NULL DEFAULT '0' COMMENT '动态ID',
`comment_id` bigint unsigned NOT NULL DEFAULT '0' COMMENT '评论ID',

@ -46,11 +46,11 @@
<template #description>
<n-alert
:show-icon="false"
class="breif-wrap"
class="brief-wrap"
:type="message.is_read > 0 ? 'default' : 'success'"
>
<div class="breif-content">
{{ message.breif }}
<div class="brief-content">
{{ message.brief }}
<span
v-if="message.type !== 4"
@click.stop="viewDetail(message)"
@ -146,9 +146,9 @@ const handleReadMessage = (message: Item.MessageProps) => {
}
}
.breif-wrap {
.brief-wrap {
margin-top: 10px;
.breif-content {
.brief-content {
display: flex;
width: 100%;
}

@ -192,7 +192,7 @@ declare module Item {
/** 类型1为动态2为评论3为回复4为私信99为系统通知 */
type: 1 | 2 | 3 | 4 | 99,
/** 摘要说明 */
breif: string,
brief: string,
/** 详细内容 */
content: string,
/** 是否已读0为未读1为已读 */

Loading…
Cancel
Save