- 评论图片上传(LV4+,经验≥1500),JPEG/PNG 自动转 WebP,二进制搜索质量优化 - 后台评论管理页面,支持关键词搜索、分页、删除,侧边栏新增入口 - 通知跳转高亮:评论通知 RelatedID 改为 postID,消息页链接到 #comments,前端自动滚动 - 新增 adminCommentUseCase/commentStore 接口(遵循 ISP),AdminCommentRow 移至 model 层 - 前端 @mention 联想/图片上传光标插入/评论展开收起/内联回复交互完善
34 lines
1.2 KiB
HTML
34 lines
1.2 KiB
HTML
{{template "admin/layout/base.html" .}}
|
|
|
|
<div class="admin-page-header">
|
|
<h2>评论管理</h2>
|
|
</div>
|
|
|
|
<div class="admin-toolbar">
|
|
<input type="text" id="commentSearch" class="admin-search-input" placeholder="搜索评论内容、作者或文章标题..." />
|
|
<button id="commentSearchBtn" class="btn btn-secondary">搜索</button>
|
|
<button id="commentClearBtn" class="btn btn-secondary" style="display:none">清除</button>
|
|
</div>
|
|
|
|
<div class="admin-table-wrap" id="commentTableWrap">
|
|
<table class="admin-table">
|
|
<thead>
|
|
<tr>
|
|
<th style="width:60px">ID</th>
|
|
<th style="width:100px">作者</th>
|
|
<th>评论内容</th>
|
|
<th style="width:160px">所属文章</th>
|
|
<th style="width:140px">时间</th>
|
|
<th style="width:100px">操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="commentTableBody"></tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="admin-pagination" id="commentPagination"></div>
|
|
<div class="admin-loading" id="commentLoading" style="display:none">加载中...</div>
|
|
|
|
{{template "admin/layout/footer.html" .}}
|
|
<script src="/admin/static/js/comments.js?v={{assetV "/admin/static/js/comments.js"}}"></script>
|