From d21f64d4a7a8a29a946751cbd3de984b43a32347 Mon Sep 17 00:00:00 2001 From: zhuyu Date: Fri, 23 May 2025 15:31:09 +0800 Subject: [PATCH] =?UTF-8?q?feature:=20=E9=9D=A2=E6=9D=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/admin/view/dashboard/task.html | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/application/admin/view/dashboard/task.html b/application/admin/view/dashboard/task.html index 41816a9..6a910e7 100644 --- a/application/admin/view/dashboard/task.html +++ b/application/admin/view/dashboard/task.html @@ -57,6 +57,15 @@ color: #666; line-height: 1.4; } + .card.completed .title { + text-decoration: line-through; + color: #999; + } + + .card.completed .note { + text-decoration: line-through; + color: #999; + } /* 响应式:小屏变成1列 */ @media (max-width: 1024px) { @@ -82,7 +91,11 @@

每日任务

{foreach $day as $item} + {if $item->status != 1} +
+ {else}
+ {/if}
{$item->title}
{$item->desc}
@@ -93,7 +106,11 @@

每周任务

{foreach $week as $item} + {if $item->status != 1} +
+ {else}
+ {/if}
{$item->title}
{$item->desc}
@@ -104,7 +121,11 @@

每月任务

{foreach $month as $item} + {if $item->status != 1} +
+ {else}
+ {/if}
{$item->title}
{$item->desc}