From 3f2e86ad7f3a8db66b5b787bb651805e9c39e26b Mon Sep 17 00:00:00 2001 From: SZCJW <792430652@qq.com> Date: Wed, 4 Mar 2026 23:29:59 +0800 Subject: [PATCH] x --- static/style.css | 4 ++ static/vue-app.js | 146 +++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 147 insertions(+), 3 deletions(-) diff --git a/static/style.css b/static/style.css index 01e535a..5b59de4 100644 --- a/static/style.css +++ b/static/style.css @@ -753,6 +753,10 @@ a:hover { gap: var(--space-4); } +.result-card.full-width { + grid-column: 1 / -1; +} + .result-card { background: var(--bg-primary); border-radius: var(--radius-xl); diff --git a/static/vue-app.js b/static/vue-app.js index 8581705..784c9f1 100644 --- a/static/vue-app.js +++ b/static/vue-app.js @@ -979,6 +979,8 @@ const ResultView = { try { state.task = await apiRequest(`/api/status/${route.params.taskId}`, { method: 'POST' }); console.log('任务数据:', state.task); + console.log('key_info:', state.task.key_info); + console.log('cavity_data:', state.task.cavity_data); } catch (e) { state.error = handleApiError(e, '加载任务详情'); } finally { @@ -1032,10 +1034,14 @@ const ResultView = { 分析时间 {{ formatDateTime(state.task.completed_at) }} +