feat: 重构留言板功能并优化UI样式
重构留言板功能,移除嵌套留言Demo页面,优化留言数据结构。新增验证码功能防止垃圾留言,改进留言列表UI样式。添加留言回复功能,支持@用户显示。优化全局状态管理,增加localStorage持久化功能。 更新技术栈依赖,包括Element Plus图标和Undraw UI组件库。调整文章详情页布局,整合留言板到文章页。修复文章浏览量统计接口路径问题,统一使用viewCount字段。 优化移动端响应式布局,改进留言表单验证逻辑。新增留言相关文章显示功能,完善用户头像生成逻辑。调整首页文章卡片样式,增加阅读量、点赞数和评论数显示。
This commit is contained in:
@@ -13,7 +13,7 @@ export interface Article {
|
||||
categoryId: number
|
||||
categoryName?: string
|
||||
tags?: string
|
||||
views?: number
|
||||
viewCount?: number
|
||||
commentCount?: number
|
||||
articleid?: string
|
||||
publishedAt?: string
|
||||
@@ -31,7 +31,7 @@ export interface Message {
|
||||
articleId?: number
|
||||
parentId?: number
|
||||
createdAt: string
|
||||
replies?: Message[]
|
||||
replyid?: number
|
||||
time?: string
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user