平台订单列表:退款不一致行提示补齐去核对退款入口

This commit is contained in:
萝卜
2026-03-11 08:15:15 +00:00
parent fc40dcee05
commit 2730d656b1
2 changed files with 77 additions and 1 deletions

View File

@@ -661,8 +661,13 @@
@endphp
@if($refundTotal > 0)
@if($isRefundInconsistent)
@php $refundFixUrl = '/admin/platform-orders/' . $order->id . '#refund-receipts'; @endphp
<a class="link text-danger" href="{{ $refundShowUrl }}">¥{{ number_format($refundTotal, 2) }}</a>
<div class="muted text-danger muted-xs">疑似不一致</div>
<div class="muted text-danger muted-xs">
疑似不一致
<span class="muted"></span>
<a class="link" href="{{ $refundFixUrl }}">去核对退款</a>
</div>
@else
<a class="muted" href="{{ $refundShowUrl }}">¥{{ number_format($refundTotal, 2) }}</a>
@endif