feat(file): 在文件预览界面添加评论功能

- 实现文件评论的前端展示界面,包括评论列表、输入框和交互功能
- 添加文件评论的API接口,支持查询和新增评论操作
- 设计并实现后端服务层、控制器、数据访问层等相关组件
- 集成评论功能到现有的文件预览页面,支持展开/收起评论区
- 实现评论数据的实时加载和提交功能,优化用户体验
This commit is contained in:
jhd
2026-07-04 10:02:52 +08:00
parent 5029d09f09
commit 09466ad4a7
10 changed files with 443 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import request from '@/utils/request'
// 查询文件评论列表
export function listFileComment(fileId) {
return request({
url: '/system/file/comment/list/' + fileId,
method: 'get'
})
}
// 新增文件评论
export function addFileComment(data) {
return request({
url: '/system/file/comment',
method: 'post',
data: data
})
}