From 81f91b320a0fbb64e04ee7202cf69e5af7947e1b Mon Sep 17 00:00:00 2001 From: cat-shark <1716967236@qq.com> Date: Sun, 2 Aug 2026 11:57:31 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E9=80=82=E9=85=8D=E5=A4=8D=E4=B9=A0?= =?UTF-8?q?=E6=80=BB=E8=A7=88=E7=A7=BB=E5=8A=A8=E7=AB=AF=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Review.vue | 101 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 101 insertions(+) diff --git a/src/components/Review.vue b/src/components/Review.vue index 51b836e..8a3f430 100644 --- a/src/components/Review.vue +++ b/src/components/Review.vue @@ -117,6 +117,48 @@ onMounted(() => { + +
+
+
+ {{ row.taskName }} + {{ formatEffectiveTime(row.effectiveTime) }} +
+
+ 报告 {{ row.reportCount || 0 }} + 残片 {{ row.fragmentCount || 0 }} +
+
+ + 查看记录 + + + 回忆复习 + +
+
+
+ @@ -163,9 +205,68 @@ onMounted(() => { cursor: pointer; } +.mobile-task-list, +.mobile-empty { + display: none; +} + +.mobile-task-card { + padding: 14px 16px; + display: flex; + flex-direction: column; + gap: 10px; + cursor: pointer; +} + +.mobile-task-head { + display: flex; + align-items: center; + justify-content: space-between; + gap: 10px; +} + +.mobile-task-head strong { + min-width: 0; + color: var(--green-900); + font-size: 15px; + overflow-wrap: anywhere; +} + +.mobile-task-time { + flex-shrink: 0; + color: var(--text-secondary); + font-size: 13px; +} + +.mobile-task-stats { + display: flex; + gap: 14px; + color: var(--text-secondary); + font-size: 13px; +} + +.mobile-task-actions { + display: flex; + gap: 4px; +} + @media (max-width: 900px) { .summary-grid { grid-template-columns: 1fr; } + + .table-card { + display: none; + } + + .mobile-task-list { + display: flex; + flex-direction: column; + gap: 10px; + } + + .mobile-empty { + display: block; + } }