Files
yu-zhi-ran/platform/frontend/topics.html
T

444 lines
23 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>
<!-- Tailwind CSS -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Vue 3 -->
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
<!-- Element Plus CSS -->
<link rel="stylesheet" href="https://unpkg.com/element-plus@2.4.3/dist/index.css">
<!-- Element Plus JS -->
<script src="https://unpkg.com/element-plus@2.4.3/dist/index.full.min.js"></script>
<style>
.card { background: white; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); padding: 24px; margin-bottom: 24px; transition: all 0.3s; }
.card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.stat-card { text-align: center; padding: 20px; cursor: pointer; transition: transform 0.2s; }
.stat-card:hover { transform: translateY(-4px); }
.stat-value { font-size: 2.5rem; font-weight: bold; color: #409EFF; line-height: 1.2; }
.stat-label { color: #909399; font-size: 0.9rem; margin-top: 8px; }
.action-btn-group { display: flex; gap: 8px; flex-wrap: wrap; }
.quick-filter { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.quick-filter .el-tag { cursor: pointer; transition: all 0.2s; }
.quick-filter .el-tag:hover { transform: translateY(-2px); }
.preview-container { position: relative; }
.preview-actions { position: absolute; top: 16px; right: 16px; z-index: 10; }
.loading-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(255,255,255,0.8); display: flex; align-items: center; justify-content: center; z-index: 9999; }
.table-header-bg { background: #f5f7fa; }
.status-badge { display: inline-flex; align-items: center; gap: 4px; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; }
.status-dot.pending { background: #E6A23C; }
.status-dot.review { background: #F56C6C; }
.status-dot.ready { background: #67C23A; }
.status-dot.published { background: #409EFF; }
aside button { width: 100%; text-align: left; border: none; background: transparent; border-radius: 8px; margin-bottom: 4px; }
aside button:hover { background-color: #f3f4f6; }
@media (max-width: 768px) { main { padding-bottom: 70px; } }
.thumbnail[src=""] { display: none; }
.nav-title { text-align: center; }
</style>
</head>
<body>
<div id="app">
<!-- 导航栏 -->
<nav class="bg-gradient-to-r from-blue-600 to-blue-700 text-white shadow-lg">
<div class="container mx-auto px-6 py-4 flex justify-between items-center">
<h1 class="text-2xl font-bold nav-title">宇之然内容创作平台 - 选题管理</h1>
</div>
</nav>
<!-- 侧边栏 -->
<div class="page flex gap-6">
<aside class="w-40 flex-shrink-0 hidden md:block">
<button @click="currentPage = 'overview'" :class="['px-4 py-2 rounded-lg', currentPage === 'overview' ? 'bg-blue-50 text-blue-600 font-semibold' : 'text-gray-600']">📊 系统概览</button>
<button @click="currentPage = 'topics'" :class="['px-4 py-2 rounded-lg', currentPage === 'topics' ? 'bg-blue-50 text-blue-600 font-semibold' : 'text-gray-600']">📋 选题管理</button>
<button @click="currentPage = 'logs'" :class="['px-4 py-2 rounded-lg', currentPage === 'logs' ? 'bg-blue-50 text-blue-600 font-semibold' : 'text-gray-600']">📄 系统日志</button>
<button v-if="isAdmin" @click="currentPage = 'users'" :class="['px-4 py-2 rounded-lg', currentPage === 'users' ? 'bg-blue-50 text-blue-600 font-semibold' : 'text-gray-600']">👥 用户管理</button>
</aside>
<!-- 主内容区 -->
<main class="flex-1">
<div class="card" style="padding: 20px; margin-top: 20px;">
<div class="flex justify-between items-center mb-6">
<h2 class="text-2xl font-bold text-gray-800">📋 选题管理</h2>
</div>
<!-- 批量操作 -->
<div class="card mb-6" style="display: inline-block; min-width: fit-content;">
<div class="flex flex-wrap gap-2 items-center">
<el-button type="primary" size="small" @click="refreshAll">🔄 批量刷新</el-button>
<el-button type="success" size="small" @click="triggerGenerateSelected" :disabled="selectedTopicIds.length === 0">▶ 批量创作</el-button>
<el-button type="warning" size="small" @click="triggerOptimizeSelected" :disabled="selectedTopicIds.length === 0">🔍 批量优化</el-button>
<span class="ml-auto text-sm text-gray-500" v-if="selectedTopicIds.length > 0">已选 {{ selectedTopicIds.length }} 项</span>
</div>
</div>
<!-- 筛选标签 -->
<div class="quick-filter mb-4">
<el-tag size="large" :type="filterStatus === '' ? 'primary' : ''" @click="filterStatus = ''">全部 ({{ topics.length }})</el-tag>
<el-tag size="large" :type="filterStatus === '待处理' ? 'primary' : ''" @click="filterStatus = '待处理'">待处理 ({{ countByStatus('待处理') }})</el-tag>
<el-tag size="large" :type="filterStatus === '待审查' ? 'primary' : ''" @click="filterStatus = '待审查'">待审查 ({{ countByStatus('待审查') }})</el-tag>
<el-tag size="large" :type="filterStatus === '待发布' ? 'primary' : ''" @click="filterStatus = '待发布'">待发布 ({{ countByStatus('待发布') }})</el-tag>
<el-tag size="large" :type="filterStatus === '已发布' ? 'primary' : ''" @click="filterStatus = '已发布'">已发布 ({{ countByStatus('已发布') }})</el-tag>
</div>
<!-- 表格 -->
<div class="card" style="width: 100%; overflow-x: auto; box-sizing: border-box;">
<el-table :data="filteredTopics" stripe v-loading="loadingTable" :row-key="topic => topic.id" @selection-change="selectedTopicIds = $event">
<el-table-column type="selection" width="55"></el-table-column>
<el-table-column prop="id" label="ID" width="70" fixed></el-table-column>
<el-table-column prop="title" label="标题" min-width="220"></el-table-column>
<el-table-column prop="field" label="领域" width="100"></el-table-column>
<el-table-column prop="priority_score" label="优先级" width="70">
<template #default="scope">
<el-tag :type="getPriorityType(scope.row.priority_score)" size="small">{{ scope.row.priority_score }}</el-tag>
</template>
</el-table-column>
<el-table-column prop="status" label="状态" width="90">
<template #default="scope">
<span class="status-badge">
<span class="status-dot" :class="getStatusClass(scope.row.status)"></span>
{{ scope.row.status }}
</span>
</template>
</el-table-column>
<el-table-column prop="compliance_score" label="合规分" width="90">
<template #default="scope">
<el-progress :percentage="scope.row.compliance_score || 0" :format="() => scope.row.compliance_score || '-'" :stroke-width="15"></el-progress>
</template>
</el-table-column>
<el-table-column prop="created_at" label="创建时间" width="140"><template #default="scope">{{ formatDate(scope.row.created_at) }}</template></el-table-column>
<el-table-column prop="generated_at" label="创作时间" width="140"><template #default="scope">{{ scope.row.generated_at ? formatDate(scope.row.generated_at) : '-' }}</template></el-table-column>
<el-table-column prop="published_at" label="发布时间" width="140"><template #default="scope">{{ scope.row.published_at ? formatDate(scope.row.published_at) : '-' }}</template></el-table-column>
<el-table-column prop="updated_at" label="更新时间" width="140"><template #default="scope">{{ formatDate(scope.row.updated_at) }}</template></el-table-column>
<el-table-column label="操作" width="210" fixed="right">
<template #default="scope">
<div class="flex flex-wrap gap-1" style="justify-content: flex-start;">
<el-button size="small" @click="openPreview(scope.row)" type="primary">预览</el-button>
<el-button size="small" type="success" :disabled="scope.row.status !== '待处理'" @click="createTopic(scope.row)">创作</el-button>
<el-button size="small" type="warning" :disabled="scope.row.status !== '待审查'" @click="optimizeTopic(scope.row)">审查</el-button>
<el-button v-if="scope.row.status === '待发布'" size="small" type="primary" @click="handlePublish(scope.row)">发布</el-button>
<el-button size="small" type="danger" @click="deleteTopic(scope.row.id)">删除</el-button>
</div>
</template>
</el-table-column>
</el-table>
</div>
</div>
</main>
</div>
<!-- 加载覆盖层 -->
<div v-if="loadingOverlay" class="loading-overlay">
<el-spinner type="spinning" :size="50"></el-spinner>
<p class="ml-4 text-lg">{{ loadingText }}</p>
</div>
<!-- 预览模态框 -->
<el-dialog v-model="previewVisible" title="选题预览" width="80%" destroy-on-close>
<div class="preview-container" v-loading="loadingOverlay" element-loading-text="加载中...">
<div class="preview-actions" v-if="previewHtml">
<el-button type="primary" size="small" @click="copyPreviewHtml">📋 复制 HTML</el-button>
<el-button type="success" size="small" @click="expandPreview">⛶ 全屏</el-button>
</div>
<el-card v-if="previewHtml" class="mt-4" style="max-height: 60vh; overflow-y: auto;">
<div v-html="previewHtml"></div>
</el-card>
<el-empty v-else description="暂无预览内容"></el-empty>
</div>
</el-dialog>
<!-- 发布模态框 -->
<el-dialog v-model="publishModalVisible" title="发布选题" width="600px" destroy-on-close>
<el-form :model="publishForm" label-width="80px">
<el-form-item label="平台">
<el-select v-model="publishForm.platform" placeholder="选择发布平台">
<el-option label="知乎" value="zhihu"></el-option>
<el-option label="微信公众号" value="wechat"></el-option>
<el-option label="小红书" value="xiaohongshu"></el-option>
</el-select>
</el-form-item>
<el-form-item label="链接">
<el-input v-model="publishForm.url" placeholder="请输入发布链接"></el-input>
</el-form-item>
<el-form-item label="描述">
<el-input v-model="publishForm.description" type="textarea" placeholder="请输入发布描述"></el-input>
</el-form-item>
</el-form>
<template #footer>
<el-button @click="publishModalVisible = false">取消</el-button>
<el-button type="primary" @click="confirmPublish">确认发布</el-button>
</template>
</el-dialog>
</div>
<script>
const TopicsApp = {
data() {
return {
// 基础数据
isLoggedIn: true,
currentUser: { username: 'admin' },
isAdmin: true,
currentPage: 'topics',
// 选题相关数据
status: {},
topics: [],
filterStatus: '',
selectedTopicIds: [],
generating: false,
optimizing: false,
loadingAll: false,
loadingTable: false,
loadingOverlay: false,
loadingText: '',
// 预览相关
previewVisible: false,
previewTopic: null,
previewPlatform: '',
previewHtml: '',
fullScreenPreview: false,
// 发布相关
publishModalVisible: false,
publishForm: {
platform: 'zhihu',
url: '',
description: ''
},
publishTopicId: '',
// 用户管理相关
users: [],
createTopicModalVisible: false,
newUserForm: {}
}
},
computed: {
filteredTopics() {
if (!this.topics.length) return []
if (!this.filterStatus) return this.topics
return this.topics.filter(t => t.status === this.filterStatus)
},
countByStatus() {
return (status) => this.topics.filter(t => t.status === status).length
}
},
methods: {
// 数据获取方法
async fetchTopics() {
this.loadingTable = true
try {
// 模拟API调用
await new Promise(resolve => setTimeout(resolve, 500))
this.topics = [
{
id: 'A01',
title: '可持续发展趋势分析',
field: '环保',
status: 'pending',
compliance_score: 85,
created_at: '2026-04-27 10:30',
generated_at: '-',
published_at: '-',
updated_at: '2026-04-27 10:30',
priority_score: '高'
},
{
id: 'B02',
title: 'AI在内容创作中的应用',
field: '科技',
status: 'review',
compliance_score: 92,
created_at: '2026-04-27 11:15',
generated_at: '2026-04-27 11:45',
published_at: '-',
updated_at: '2026-04-27 11:45',
priority_score: '中'
},
{
id: 'C03',
title: '数字化转型案例研究',
field: '商业',
status: 'ready',
compliance_score: 78,
created_at: '2026-04-27 12:00',
generated_at: '2026-04-27 12:30',
published_at: '2026-04-27 13:00',
updated_at: '2026-04-27 13:00',
priority_score: '高'
}
]
} catch (error) {
console.error('获取选题失败:', error)
} finally {
this.loadingTable = false
}
},
// 批量操作方法
refreshAll() {
alert('执行批量刷新操作')
},
async triggerGenerateSelected() {
if (!this.selectedTopicIds.length) return
this.loadingOverlay = true
this.loadingText = '正在批量创作...'
try {
for (const t of this.selectedTopicIds) {
await this.triggerGenerate(t.id)
}
this.$message.success('批量创作完成')
this.selectedTopicIds = []
await this.fetchTopics()
} catch (e) {
this.$message.error('批量创作失败:' + e.message)
} finally {
this.loadingOverlay = false
}
},
async triggerOptimizeSelected() {
if (!this.selectedTopicIds.length) return
this.loadingOverlay = true
this.loadingText = '正在批量优化...'
try {
const ids = this.selectedTopicIds.map(t => t.id)
await this.triggerOptimize(ids)
this.$message.success('批量优化完成')
this.selectedTopicIds = []
await this.fetchTopics()
} catch (e) {
this.$message.error('批量优化失败:' + e.message)
} finally {
this.loadingOverlay = false
}
},
// 单个操作方法
openPreview(topic) {
this.previewTopic = topic
this.previewPlatform = 'zhihu'
this.previewVisible = true
this.loadingOverlay = true
this.loadingText = '加载中...'
// 模拟预览加载
setTimeout(() => {
this.previewHtml = '<h3>选题预览内容</h3><p>这里是选题的详细内容和格式预览...</p>'
this.loadingOverlay = false
}, 1000)
},
loadPreview() {},
copyPreviewHtml() {
this.$message.success('HTML 已复制到剪贴板')
},
expandPreview() {
this.fullScreenPreview = !this.fullScreenPreview
},
async createTopic(topic) {
if (topic && topic.status === '待处理') {
await this.triggerGenerate([topic.id])
await this.fetchTopics()
} else {
this.$message.info('仅待处理选题可创作')
}
},
async optimizeTopic(topic) {
if (topic && topic.status === '待审查') {
await this.triggerOptimize([topic.id])
await this.fetchTopics()
} else {
this.$message.info('仅待审查选题可优化')
}
},
handlePublish(topic) {
this.publishTopicId = topic.id
this.publishModalVisible = true
},
confirmPublish() {
this.$message.success('发布成功')
this.publishModalVisible = false
this.fetchTopics()
},
deleteTopic(id) {
this.$confirm('确定删除该选题?删除后无法恢复。', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(async () => {
try {
await this.deleteTopicApi(id)
this.$message.success('删除成功')
await this.fetchTopics()
} catch (e) {
this.$message.error('删除失败:' + e.message)
}
}).catch(() => {})
},
// API 模拟方法
async triggerGenerate(ids) {
await new Promise(resolve => setTimeout(resolve, 1000))
console.log('生成选题:', ids)
},
async triggerOptimize(ids) {
await new Promise(resolve => setTimeout(resolve, 1000))
console.log('优化选题:', ids)
},
async deleteTopicApi(id) {
await new Promise(resolve => setTimeout(resolve, 500))
console.log('删除选题:', id)
},
// 工具方法
getPriorityType(score) {
const types = { '高': 'danger', '中': 'warning', '低': 'info' }
return types[score] || 'info'
},
getStatusClass(status) {
const classes = {
'待处理': 'status-dot pending',
'待审查': 'status-dot review',
'待发布': 'status-dot ready',
'已发布': 'status-dot published'
}
return classes[status] || ''
},
formatDate(dateStr) {
if (!dateStr || dateStr === '-') return '-'
const date = new Date(dateStr.replace(' ', 'T'))
return date.toLocaleString('zh-CN', {
year: 'numeric', month: '2-digit', day: '2-digit',
hour: '2-digit', minute: '2-digit'
})
}
},
mounted() {
this.fetchTopics()
}
}
Vue.createApp(TopicsApp).mount('#app')
</script>
</body>
</html>