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