Files
yu-zhi-ran/automation/templates/zhihu.html
T
lt 277b13eaae feat: 完成布局优化 - 操作列固定、批量按钮自适应、分类标签带数量
优化内容:
1. 表格布局:
   - 使用 calc(100vw - 160px) 确保表格不超出视口
   - 操作列 fixed='right' 固定在右侧,宽度 300px
   - 按钮 3 个后自动换行 (max-width: 200px)
   - 恢复合理列宽,不再过度压缩

2. 批量操作区域:
   - 容器改为 inline-block,宽度自适应按钮内容
   - 背景宽度与按钮总宽度匹配

3. 分类标签:
   - 显示数量 (如 '待处理 (20)')
   - 点击切换筛选,去掉误导的 'X' 图标

4. 删除功能:
   - 操作列增加删除按钮
   - 删除前弹出确认对话框

5. 系统日志:
   - 修复后端日志路径 (parents[4])
   - 404 时显示友好提示

6. 其他:
   - 左侧菜单宽度 160px
   - 所有功能保留 (登录、用户管理、批量操作等)
2026-04-27 11:32:17 +08:00

178 lines
3.7 KiB
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{TITLE}} - {{DATE}} - 知乎专栏</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
line-height: 1.8;
max-width: 680px;
margin: 0 auto;
padding: 20px;
color: #1a1a1a;
background-color: #fff;
}
h1 {
font-size: 1.8em;
font-weight: 600;
margin-top: 0;
margin-bottom: 20px;
color: #121212;
}
h2 {
font-size: 1.4em;
font-weight: 600;
margin-top: 32px;
margin-bottom: 16px;
color: #262626;
}
h3 {
font-size: 1.2em;
font-weight: 600;
margin-top: 24px;
margin-bottom: 12px;
color: #595959;
}
p {
margin: 16px 0;
color: #404040;
text-align: justify;
}
ul, ol {
padding-left: 24px;
margin: 16px 0;
}
li {
margin: 8px 0;
}
img {
max-width: 100%;
height: auto;
margin: 24px 0;
border-radius: 4px;
border: 1px solid #f0f0f0;
}
blockquote {
margin: 24px 0;
padding: 12px 20px;
border-left: 4px solid #0084ff;
background-color: #f6f9ff;
color: #595959;
}
/* 页头样式 */
.header {
margin-bottom: 32px;
border-bottom: 1px solid #f0f0f0;
padding-bottom: 20px;
}
.author-info {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 12px;
font-size: 0.9em;
color: #8590a6;
}
.author {
font-weight: 500;
}
.update-time {
color: #8590a6;
}
/* 内容样式 */
.content {
margin-bottom: 24px;
}
/* 标签样式 */
.tags {
margin: 24px 0;
padding: 16px 0;
border-top: 1px solid #f0f0f0;
border-bottom: 1px solid #f0f0f0;
}
.tag {
display: inline-block;
margin: 4px 8px 4px 0;
padding: 4px 12px;
background-color: #f6f9ff;
color: #0084ff;
border-radius: 12px;
font-size: 0.9em;
}
/* 互动建议 */
.interaction {
margin: 24px 0;
padding: 16px;
background-color: #f6f9ff;
border-radius: 6px;
text-align: center;
color: #0084ff;
font-weight: 500;
}
/* 页脚样式 */
footer {
margin-top: 32px;
padding-top: 20px;
border-top: 1px solid #f0f0f0;
color: #8590a6;
font-size: 0.85em;
text-align: center;
}
.gen-time {
margin-top: 8px;
font-size: 0.9em;
}
@media (max-width: 600px) {
body {
padding: 16px;
line-height: 1.6;
}
h1 {
font-size: 1.5em;
}
h2 {
font-size: 1.3em;
}
.author-info {
flex-direction: column;
align-items: flex-start;
gap: 4px;
}
}
</style>
</head>
<body>
<!-- 页头区域 -->
<div class="header">
<div class="author-info">
<span class="author">作者:宇之然 AI 助手</span>
<span class="update-time">更新日期:{{DATE}}</span>
</div>
<h1>{{TITLE}}</h1>
</div>
<!-- 内容区域(不含标题) -->
<div class="content">
<!-- CONTENT -->
</div>
<!-- 分类标签 -->
<div class="tags">
<!-- TAGS -->
</div>
<!-- 互动建议 -->
<div class="interaction">
<p>欢迎在评论区分享你的实践经验和改进建议!</p>
</div>
<!-- 页脚区域 -->
<footer>
<p>本文由宇之然 AI 助手生成,数据来源可靠,内容经合规审查</p>
<p class="gen-time">生成时间:{{GEN_TIME}}</p>
</footer>
</body>
</html>