Platform orders index: expand lead governance quick links

This commit is contained in:
萝卜
2026-03-15 00:17:20 +00:00
parent 4be39ca8e7
commit 4df3139824
2 changed files with 89 additions and 0 deletions

View File

@@ -97,9 +97,29 @@
'status' => 'pending',
]);
@endphp
@php
$leadBmpaUrl = $buildLeadGovernUrl([
'payment_status' => 'unpaid',
'status' => 'pending',
]);
$leadSyncableUrl = $buildLeadGovernUrl([
'syncable_only' => '1',
'sync_status' => null,
'fail_only' => null,
]);
$leadSyncFailedUrl = $buildLeadGovernUrl([
'sync_status' => 'failed',
'syncable_only' => null,
]);
@endphp
<div class="mt-6 actions gap-10">
<a class="btn btn-secondary btn-sm" href="{!! $leadUnpaidUrl !!}">查看待支付(该线索)</a>
<a class="btn btn-secondary btn-sm" href="{!! $leadPaidPendingUrl !!}">查看待生效(该线索)</a>
<a class="btn btn-secondary btn-sm" href="{!! $leadBmpaUrl !!}">查看可BMPA处理该线索</a>
<a class="btn btn-secondary btn-sm" href="{!! $leadSyncableUrl !!}">查看可同步(该线索)</a>
<a class="btn btn-secondary btn-sm" href="{!! $leadSyncFailedUrl !!}">查看同步失败(该线索)</a>
</div>
</div>
</div>