refactor(dashboard): 口径说明抽为metric_explain组件减少重复

This commit is contained in:
萝卜
2026-03-17 19:31:29 +08:00
parent 4e973b7337
commit 283cc6349a
2 changed files with 30 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
@php
$items = $items ?? [];
$title = $title ?? '口径说明';
@endphp
@if(is_array($items) && count($items) > 0)
<div class="muted muted-xs">
<strong>{{ $title }}</strong>
@foreach($items as $i => $text)
<span>{{ $text }}@if($i < count($items) - 1)@endif</span>
@endforeach
</div>
@endif