chore(admin-ui): subscription show related orders use list card and admin pagination
This commit is contained in:
@@ -407,10 +407,12 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
<h3>关联平台订单({{ $platformOrders->total() }})</h3>
|
||||
<div class="card list-card">
|
||||
<div class="list-card-header">
|
||||
<div>
|
||||
<h3 class="list-card-title">关联平台订单({{ $platformOrders->total() }})</h3>
|
||||
|
||||
<div class="mb-10">
|
||||
<div class="mt-10">
|
||||
<span class="muted">同步状态筛选:</span>
|
||||
@php
|
||||
$cur = $summaryStats['current_order_sync_status'] ?? '';
|
||||
@@ -444,9 +446,12 @@
|
||||
@if($cur)
|
||||
<span class="muted">(当前:{{ $cur }})</span>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<table>
|
||||
<div class="list-card-body">
|
||||
<table class="list-card-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>ID</th>
|
||||
@@ -503,12 +508,13 @@
|
||||
</tr>
|
||||
@empty
|
||||
<tr>
|
||||
<td colspan="11" class="muted">暂无关联平台订单。</td>
|
||||
<td colspan="11" class="muted table-empty">暂无关联平台订单。</td>
|
||||
</tr>
|
||||
@endforelse
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<div class="pagination-wrap">{{ $platformOrders->links() }}</div>
|
||||
{{ $platformOrders->links('pagination.admin') }}
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
Reference in New Issue
Block a user