feat: 优化任务页面 UI 展示
This commit is contained in:
+116
-14
@@ -1,16 +1,63 @@
|
|||||||
body {
|
body {
|
||||||
background: #f5f7fb;
|
background:
|
||||||
color: #172033;
|
linear-gradient(180deg, #f4f7fb 0%, #eef3f8 42%, #f8fafc 100%);
|
||||||
|
color: #182235;
|
||||||
|
min-height: 100vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.app-navbar {
|
||||||
|
background: rgba(255, 255, 255, 0.94) !important;
|
||||||
|
border-bottom: 1px solid #dfe7f1;
|
||||||
|
box-shadow: 0 10px 30px rgba(19, 34, 56, 0.04);
|
||||||
|
}
|
||||||
|
|
||||||
|
.navbar-brand {
|
||||||
|
color: #102033;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-link {
|
||||||
|
color: #526173;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tool-card,
|
||||||
.card {
|
.card {
|
||||||
|
background: rgba(255, 255, 255, 0.96);
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
border: 1px solid #dfe5ef;
|
border: 1px solid #dbe4ef;
|
||||||
box-shadow: 0 10px 28px rgba(31, 42, 68, 0.06);
|
box-shadow: 0 16px 42px rgba(31, 42, 68, 0.07);
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar {
|
.card-header,
|
||||||
background: #fff !important;
|
.section-heading {
|
||||||
|
background: linear-gradient(180deg, #ffffff, #f8fafc);
|
||||||
|
border-bottom: 1px solid #e4ebf3;
|
||||||
|
padding: 18px 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-heading {
|
||||||
|
align-items: center;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
gap: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-heading h2,
|
||||||
|
.page-heading h1 {
|
||||||
|
font-size: 22px;
|
||||||
|
font-weight: 700;
|
||||||
|
letter-spacing: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-kicker,
|
||||||
|
.eyebrow {
|
||||||
|
color: #0e766e;
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: 700;
|
||||||
|
letter-spacing: 0;
|
||||||
|
margin: 0 0 4px;
|
||||||
|
text-transform: uppercase;
|
||||||
}
|
}
|
||||||
|
|
||||||
.hero-band {
|
.hero-band {
|
||||||
@@ -20,7 +67,9 @@ body {
|
|||||||
url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1600&q=80");
|
url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1600&q=80");
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
|
border: 1px solid rgba(255, 255, 255, 0.18);
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
|
box-shadow: 0 24px 60px rgba(15, 36, 62, 0.18);
|
||||||
color: #fff;
|
color: #fff;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
@@ -52,20 +101,67 @@ body {
|
|||||||
gap: 12px;
|
gap: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.eyebrow {
|
.page-heading {
|
||||||
color: #71d4c7;
|
align-items: center;
|
||||||
font-size: 13px;
|
display: flex;
|
||||||
font-weight: 700;
|
justify-content: space-between;
|
||||||
letter-spacing: 0;
|
gap: 16px;
|
||||||
text-transform: uppercase;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.metric-box {
|
.metric-box {
|
||||||
background: #f8fafc;
|
background: linear-gradient(180deg, #f9fbfd, #f3f7fb);
|
||||||
border: 1px solid #e3e9f2;
|
border: 1px solid #e3e9f2;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
padding: 14px;
|
padding: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.metric-box strong {
|
||||||
|
color: #132033;
|
||||||
|
display: block;
|
||||||
|
font-size: 18px;
|
||||||
|
margin: 4px 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-table thead th {
|
||||||
|
background: #f8fafc;
|
||||||
|
color: #536174;
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: 700;
|
||||||
|
text-transform: uppercase;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-table tbody tr {
|
||||||
|
border-color: #e8eef5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-table tbody tr:hover {
|
||||||
|
background: #f7fbff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.task-number {
|
||||||
|
align-items: center;
|
||||||
|
background: #e7f0ff;
|
||||||
|
border: 1px solid #cfe0ff;
|
||||||
|
border-radius: 999px;
|
||||||
|
color: #0b5ed7;
|
||||||
|
display: inline-flex;
|
||||||
|
font-weight: 700;
|
||||||
|
height: 32px;
|
||||||
|
justify-content: center;
|
||||||
|
min-width: 32px;
|
||||||
|
padding: 0 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.task-overview {
|
||||||
|
border-top: 3px solid #0d6efd;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hotspot-item {
|
||||||
|
border-color: #e3eaf2;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.status-panel {
|
.status-panel {
|
||||||
@@ -98,4 +194,10 @@ body {
|
|||||||
.hero-copy h1 {
|
.hero-copy h1 {
|
||||||
font-size: 36px;
|
font-size: 36px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.section-heading,
|
||||||
|
.page-heading {
|
||||||
|
align-items: flex-start;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,9 +10,9 @@
|
|||||||
<script src="/static/app.js" defer></script>
|
<script src="/static/app.js" defer></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<nav class="navbar navbar-expand-lg bg-body-tertiary border-bottom">
|
<nav class="navbar navbar-expand-lg app-navbar">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<a class="navbar-brand" href="/">热榜评论分析工具</a>
|
<a class="navbar-brand fw-semibold" href="/">热榜评论雷达</a>
|
||||||
<div class="navbar-nav">
|
<div class="navbar-nav">
|
||||||
<a class="nav-link" href="/">任务列表</a>
|
<a class="nav-link" href="/">任务列表</a>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -10,12 +10,18 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="hero-actions">
|
<div class="hero-actions">
|
||||||
<a class="btn btn-light" href="#create-task">创建新任务</a>
|
<a class="btn btn-light" href="#create-task">创建新任务</a>
|
||||||
<a class="btn btn-outline-light" href="#task-history">查看 Demo 数据</a>
|
<a class="btn btn-outline-light" href="#task-history">查看任务</a>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section class="card mb-4" id="create-task">
|
<section class="tool-card mb-4" id="create-task">
|
||||||
<div class="card-header">创建抓取任务</div>
|
<div class="section-heading">
|
||||||
|
<div>
|
||||||
|
<p class="section-kicker">采集配置</p>
|
||||||
|
<h2>创建抓取任务</h2>
|
||||||
|
</div>
|
||||||
|
<span class="text-muted small">默认规模 5 × 5 × 50</span>
|
||||||
|
</div>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<div id="form-error" class="alert alert-danger d-none" role="alert"></div>
|
<div id="form-error" class="alert alert-danger d-none" role="alert"></div>
|
||||||
<form id="task-form" onsubmit="submitTask(event)">
|
<form id="task-form" onsubmit="submitTask(event)">
|
||||||
@@ -50,13 +56,16 @@
|
|||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section class="card" id="task-history">
|
<section class="tool-card" id="task-history">
|
||||||
<div class="card-header d-flex justify-content-between align-items-center">
|
<div class="section-heading">
|
||||||
<span>最近任务与 Demo 数据</span>
|
<div>
|
||||||
<button class="btn btn-outline-secondary btn-sm" onclick="window.location.href='/'">手动刷新</button>
|
<p class="section-kicker">任务历史</p>
|
||||||
|
<h2>最近任务与 Demo 数据</h2>
|
||||||
|
</div>
|
||||||
|
{% if has_running_tasks %}<span class="badge text-bg-warning">自动更新中</span>{% endif %}
|
||||||
</div>
|
</div>
|
||||||
<div class="table-responsive">
|
<div class="table-responsive">
|
||||||
<table class="table table-hover align-middle mb-0">
|
<table class="table app-table align-middle mb-0">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>任务 ID</th>
|
<th>任务 ID</th>
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
{% set ai_percent = rate_percent(task.analysis_success_rate) %}
|
{% set ai_percent = rate_percent(task.analysis_success_rate) %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
<strong>{{ task.display_id or loop.index }}</strong>
|
<span class="task-number">{{ task.display_id or loop.index }}</span>
|
||||||
{% if task.is_demo %}
|
{% if task.is_demo %}
|
||||||
<br><span class="badge text-bg-info">Demo 数据</span>
|
<br><span class="badge text-bg-info">Demo 数据</span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
@@ -36,7 +36,7 @@
|
|||||||
<br><small class="text-danger">{{ task.error_summary }}</small>
|
<br><small class="text-danger">{{ task.error_summary }}</small>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</td>
|
</td>
|
||||||
<td><a class="btn btn-sm btn-outline-primary" href="/tasks/{{ task.id }}">查看</a></td>
|
<td><a class="btn btn-sm btn-primary" href="/tasks/{{ task.id }}">查看</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
{% else %}
|
{% else %}
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@@ -7,20 +7,22 @@
|
|||||||
</ol></nav>
|
</ol></nav>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="d-flex justify-content-between align-items-center mb-3">
|
<div class="page-heading mb-3">
|
||||||
<h1 class="h3 mb-0">任务 {{ task.display_id }}</h1>
|
<div>
|
||||||
<button class="btn btn-outline-secondary btn-sm" onclick="window.location.reload()">手动刷新</button>
|
<p class="section-kicker">任务详情</p>
|
||||||
</div>
|
<h1>任务 {{ task.display_id }}</h1>
|
||||||
<section class="card mb-4" {% if task.status == "running" %}data-task-id="{{ task.id }}" data-auto-poll="true"{% endif %}><div class="card-body">
|
</div>
|
||||||
{% set label, cls = status_badge_config(task.status) %}
|
{% set label, cls = status_badge_config(task.status) %}
|
||||||
|
<span class="badge {{ cls }}">{{ label }}</span>
|
||||||
|
</div>
|
||||||
|
<section class="tool-card task-overview mb-4" {% if task.status == "running" %}data-task-id="{{ task.id }}" data-auto-poll="true"{% endif %}><div class="card-body">
|
||||||
{% set percent = progress_percent(task.processed_items_count, task.total_items_count) %}
|
{% set percent = progress_percent(task.processed_items_count, task.total_items_count) %}
|
||||||
{% set ai_percent = rate_percent(task.analysis_success_rate) %}
|
{% set ai_percent = rate_percent(task.analysis_success_rate) %}
|
||||||
{% set target_comments = task.hotspot_limit * task.item_limit_per_hotspot * task.comment_limit_per_item %}
|
{% set target_comments = task.hotspot_limit * task.item_limit_per_hotspot * task.comment_limit_per_item %}
|
||||||
<div class="d-flex flex-wrap justify-content-between gap-3 mb-3">
|
<div class="d-flex flex-wrap justify-content-between gap-3 mb-3">
|
||||||
<p class="mb-0">平台:{{ task.platform | platform_label }} <span class="badge {{ cls }}">{{ label }}</span>{% if task.is_demo %}<span class="badge text-bg-info ms-1">Demo 数据</span>{% endif %}</p>
|
<p class="mb-0">平台:{{ task.platform | platform_label }}{% if task.is_demo %}<span class="badge text-bg-info ms-2">Demo 数据</span>{% endif %}</p>
|
||||||
<p class="mb-0 text-muted">阶段:{{ task.current_stage_label or "等待启动" }}</p>
|
<p class="mb-0 text-muted">创建时间 {{ task.created_at_label }} · 阶段 {{ task.current_stage_label or "等待启动" }}</p>
|
||||||
</div>
|
</div>
|
||||||
<div class="small text-muted mb-3">创建时间 {{ task.created_at_label }} · 完整 ID {{ task.id }}</div>
|
|
||||||
<div class="mb-3">
|
<div class="mb-3">
|
||||||
<div class="d-flex justify-content-between align-items-center gap-2">
|
<div class="d-flex justify-content-between align-items-center gap-2">
|
||||||
<span>已处理 {{ task.processed_items_count }} / 共 {{ task.total_items_count }} 条内容</span>
|
<span>已处理 {{ task.processed_items_count }} / 共 {{ task.total_items_count }} 条内容</span>
|
||||||
@@ -80,7 +82,7 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
<div class="accordion" id="hotspot-list">
|
<div class="accordion" id="hotspot-list">
|
||||||
{% for hotspot in hotspots %}
|
{% for hotspot in hotspots %}
|
||||||
<div class="accordion-item">
|
<div class="accordion-item hotspot-item">
|
||||||
<h2 class="accordion-header">
|
<h2 class="accordion-header">
|
||||||
<button class="accordion-button {% if not loop.first %}collapsed{% endif %}" type="button" data-bs-toggle="collapse" data-bs-target="#hotspot-{{ hotspot.id }}">
|
<button class="accordion-button {% if not loop.first %}collapsed{% endif %}" type="button" data-bs-toggle="collapse" data-bs-target="#hotspot-{{ hotspot.id }}">
|
||||||
热点 {{ hotspot.rank }}:{{ hotspot.title }}
|
热点 {{ hotspot.rank }}:{{ hotspot.title }}
|
||||||
|
|||||||
@@ -18,7 +18,8 @@ def test_index_page_renders_task_form_empty_state_and_default_scale():
|
|||||||
assert 'name="item_limit_per_hotspot"' in response.text
|
assert 'name="item_limit_per_hotspot"' in response.text
|
||||||
assert 'name="comment_limit_per_item"' in response.text
|
assert 'name="comment_limit_per_item"' in response.text
|
||||||
assert "1250" in response.text
|
assert "1250" in response.text
|
||||||
assert 'onclick="window.location.href=\'/\'"' in response.text
|
assert "手动刷新" not in response.text
|
||||||
|
assert 'onclick="window.location.href=\'/\'"' not in response.text
|
||||||
assert "还没有任何任务" in response.text
|
assert "还没有任何任务" in response.text
|
||||||
|
|
||||||
|
|
||||||
@@ -167,12 +168,13 @@ def test_running_task_detail_page_auto_polls_current_task():
|
|||||||
assert response.status_code == 200
|
assert response.status_code == 200
|
||||||
assert 'data-task-id="task-running"' in response.text
|
assert 'data-task-id="task-running"' in response.text
|
||||||
assert "pollTaskDetailStatus" in response.text
|
assert "pollTaskDetailStatus" in response.text
|
||||||
assert 'onclick="window.location.reload()"' in response.text
|
assert "手动刷新" not in response.text
|
||||||
|
assert 'onclick="window.location.reload()"' not in response.text
|
||||||
assert "已处理 1 / 共 2 条内容" in response.text
|
assert "已处理 1 / 共 2 条内容" in response.text
|
||||||
assert "AI 成功率 100%" in response.text
|
assert "AI 成功率 100%" in response.text
|
||||||
|
|
||||||
|
|
||||||
def test_task_detail_uses_short_number_title_and_keeps_full_uuid_for_diagnostics():
|
def test_task_detail_uses_short_number_title_and_hides_full_uuid():
|
||||||
task_id = "33333333-3333-4333-8333-333333333333"
|
task_id = "33333333-3333-4333-8333-333333333333"
|
||||||
with make_test_client() as (client, engine):
|
with make_test_client() as (client, engine):
|
||||||
from sqlalchemy.orm import Session
|
from sqlalchemy.orm import Session
|
||||||
@@ -197,8 +199,8 @@ def test_task_detail_uses_short_number_title_and_keeps_full_uuid_for_diagnostics
|
|||||||
visible_text = BeautifulSoup(response.text, "html.parser").get_text(" ")
|
visible_text = BeautifulSoup(response.text, "html.parser").get_text(" ")
|
||||||
assert "<title>任务 1 - 热榜评论分析工具</title>" in response.text
|
assert "<title>任务 1 - 热榜评论分析工具</title>" in response.text
|
||||||
assert "任务 1" in visible_text
|
assert "任务 1" in visible_text
|
||||||
assert "完整 ID" in visible_text
|
assert "完整 ID" not in visible_text
|
||||||
assert task_id in visible_text
|
assert task_id not in visible_text
|
||||||
assert "任务 #33333333-3333-4333-8333-333333333333" not in visible_text
|
assert "任务 #33333333-3333-4333-8333-333333333333" not in visible_text
|
||||||
assert "#" not in visible_text
|
assert "#" not in visible_text
|
||||||
assert "创建时间 2026-07-03 10:30" in visible_text
|
assert "创建时间 2026-07-03 10:30" in visible_text
|
||||||
@@ -296,7 +298,7 @@ def test_running_task_detail_page_shows_stage_runtime_and_stale_progress_warning
|
|||||||
response = client.get("/tasks/task-stale")
|
response = client.get("/tasks/task-stale")
|
||||||
|
|
||||||
assert response.status_code == 200
|
assert response.status_code == 200
|
||||||
assert "阶段:AI 分析中" in response.text
|
assert "阶段 AI 分析中" in response.text
|
||||||
assert "运行时长" in response.text
|
assert "运行时长" in response.text
|
||||||
assert "2小时5分钟" in response.text
|
assert "2小时5分钟" in response.text
|
||||||
assert "最近进度" in response.text
|
assert "最近进度" in response.text
|
||||||
@@ -419,7 +421,8 @@ def test_result_pages_render_seeded_data():
|
|||||||
assert task_response.status_code == 200
|
assert task_response.status_code == 200
|
||||||
assert "热点标题" in task_response.text
|
assert "热点标题" in task_response.text
|
||||||
assert "热点 1:热点标题" in BeautifulSoup(task_response.text, "html.parser").get_text(" ")
|
assert "热点 1:热点标题" in BeautifulSoup(task_response.text, "html.parser").get_text(" ")
|
||||||
assert 'onclick="window.location.reload()"' in task_response.text
|
assert 'onclick="window.location.reload()"' not in task_response.text
|
||||||
|
assert "手动刷新" not in task_response.text
|
||||||
assert hotspot_response.status_code == 200
|
assert hotspot_response.status_code == 200
|
||||||
assert "热点总结" in hotspot_response.text
|
assert "热点总结" in hotspot_response.text
|
||||||
assert "downloadExport(" not in hotspot_response.text
|
assert "downloadExport(" not in hotspot_response.text
|
||||||
|
|||||||
Reference in New Issue
Block a user