页面优化,功能修复

This commit is contained in:
jiangdong.cheng
2026-02-12 13:06:12 +08:00
parent d35c397e8d
commit 67cd9501de
24 changed files with 975 additions and 242 deletions

View File

@@ -0,0 +1,15 @@
@props([
'stats' => [],
'gridClass' => 'channel-kpis',
'itemClass' => 'channel-kpi',
])
<section class="{{ $gridClass }}">
@foreach($stats as $stat)
<article class="{{ $itemClass }}">
<span>{{ $stat['label'] }}</span>
<b>{{ $stat['value'] }}</b>
</article>
@endforeach
</section>