ui(dashboard): fold northstar text table into details
This commit is contained in:
@@ -492,34 +492,38 @@
|
||||
$goSyncFailed = (int) ($ops['govern_sync_failed'] ?? 0);
|
||||
@endphp
|
||||
|
||||
<table class="mt-10">
|
||||
<tr>
|
||||
<th>近30天已收款</th>
|
||||
<td>
|
||||
<a class="link" href="{!! (string) ($opsLinks['revenue_30d_paid_orders'] ?? $billingEntryLinks['platform_orders']) !!}">
|
||||
¥{{ number_format($paidRevenue30d, 2) }}
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>活跃付费站点</th>
|
||||
<td>
|
||||
<a class="link" href="{!! (string) ($opsLinks['active_paid_merchants_subscriptions'] ?? $billingEntryLinks['site_subscriptions']) !!}">
|
||||
{{ $activePaidMerchants }}
|
||||
</a>
|
||||
<span class="muted muted-xs">(以“已生效且未到期订阅”估算)</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>续费成功率(30天)</th>
|
||||
<td>
|
||||
<a class="link" href="{!! (string) ($opsLinks['renewal_orders_30d'] ?? $billingEntryLinks['platform_orders']) !!}">
|
||||
{{ $renewalRate30d }}%
|
||||
</a>
|
||||
<span class="muted muted-xs">({{ $renewalSuccess30d }} / {{ $renewalCreated30d }})</span>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<details class="mt-10" data-role="platform-ops-northstar-details" data-storage-key="admin.dashboard.platform_ops_northstar_details">
|
||||
<summary class="muted"><strong>北极星指标(文字口径)</strong> <span class="muted muted-xs">(少用,默认收起)</span></summary>
|
||||
|
||||
<table class="mt-10">
|
||||
<tr>
|
||||
<th>近30天已收款</th>
|
||||
<td>
|
||||
<a class="link" href="{!! (string) ($opsLinks['revenue_30d_paid_orders'] ?? $billingEntryLinks['platform_orders']) !!}">
|
||||
¥{{ number_format($paidRevenue30d, 2) }}
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>活跃付费站点</th>
|
||||
<td>
|
||||
<a class="link" href="{!! (string) ($opsLinks['active_paid_merchants_subscriptions'] ?? $billingEntryLinks['site_subscriptions']) !!}">
|
||||
{{ $activePaidMerchants }}
|
||||
</a>
|
||||
<span class="muted muted-xs">(以“已生效且未到期订阅”估算)</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>续费成功率(30天)</th>
|
||||
<td>
|
||||
<a class="link" href="{!! (string) ($opsLinks['renewal_orders_30d'] ?? $billingEntryLinks['platform_orders']) !!}">
|
||||
{{ $renewalRate30d }}%
|
||||
</a>
|
||||
<span class="muted muted-xs">({{ $renewalSuccess30d }} / {{ $renewalCreated30d }})</span>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</details>
|
||||
|
||||
@php
|
||||
// 北极星指标图形化:给运营“规模感/健康感”,但不引入额外分类维度。
|
||||
|
||||
Reference in New Issue
Block a user