From 353ae1bcc2e70ffb753d165fda0a41034944575c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Tue, 17 Mar 2026 18:18:18 +0800 Subject: [PATCH] =?UTF-8?q?feat(batch-mark-activated):=20=E5=AE=8C?= =?UTF-8?q?=E6=88=90=E5=90=8Esuccess=E6=8F=90=E7=A4=BA=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E6=9F=A5=E7=9C=8B=E6=89=B9=E9=87=8F=E7=BB=93=E6=9E=9C=E5=85=A5?= =?UTF-8?q?=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Http/Controllers/Admin/PlatformOrderController.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/Http/Controllers/Admin/PlatformOrderController.php b/app/Http/Controllers/Admin/PlatformOrderController.php index 630e61a..3e8eaef 100644 --- a/app/Http/Controllers/Admin/PlatformOrderController.php +++ b/app/Http/Controllers/Admin/PlatformOrderController.php @@ -1961,7 +1961,11 @@ class PlatformOrderController extends Controller $msg .= ';失败原因Top:' . $topText; } - return redirect()->back()->with('success', $msg); + return redirect()->back() + ->with('success', $msg) + // 批量“仅标记为已生效”无 run_id(同步执行),这里提供一个“查看本次批量结果”的快捷入口:最近24小时批量生效集合。 + ->with('success_link_href', '/admin/platform-orders?batch_mark_activated_24h=1#filters') + ->with('success_link_label', '查看本次批量结果'); } public function clearSyncError(Request $request, PlatformOrder $order): RedirectResponse