样式处理
Some checks failed
Tests / PHP 8.2 (push) Has been cancelled
Tests / PHP 8.3 (push) Has been cancelled
Tests / PHP 8.4 (push) Has been cancelled

This commit is contained in:
zhongjy001
2026-03-09 22:46:47 +08:00
parent 6947360e5c
commit e30c6a9f14
2 changed files with 2 additions and 60 deletions

View File

@@ -83,25 +83,6 @@ $bannerItems = collect(data_get($bannerModule, 'items', []))->take((int) data_ge
<button class="btn btn-primary" type="submit"><i class="bi bi-search"></i> 搜索</button>
</form>
<div class="tool-kpis">
<div class="tool-kpi">
<span class="label">工具总数</span>
<span class="value">{{ $toolStats['total'] }}</span>
</div>
<div class="tool-kpi">
<span class="label">API支持</span>
<span class="value">{{ $toolStats['api'] }}</span>
</div>
<div class="tool-kpi">
<span class="label">免费工具</span>
<span class="value">{{ $toolStats['free'] }}</span>
</div>
<div class="tool-kpi">
<span class="label">7日更新</span>
<span class="value">{{ $toolStats['updated_7d'] }}</span>
</div>
</div>
<nav class="channel-tabs justify-content-center" aria-label="筛选模式">
@foreach($tabOptions as $tab)
<a class="channel-tab @if($activeTab === $tab['key']) active @endif" href="{{ route('tools.index', array_filter(array_merge($filters, ['tab' => $tab['key']]))) }}">{{ $tab['label'] }}</a>