From 22efadd74bbb5367742b9c9011dd08352e68acae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Mon, 16 Mar 2026 11:21:32 +0800 Subject: [PATCH] fix(platform-orders): include attach params in bmpa find-subscription link --- resources/views/admin/platform_orders/show.blade.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/resources/views/admin/platform_orders/show.blade.php b/resources/views/admin/platform_orders/show.blade.php index ddd503b..5d17f04 100644 --- a/resources/views/admin/platform_orders/show.blade.php +++ b/resources/views/admin/platform_orders/show.blade.php @@ -247,6 +247,9 @@ $missingSubscriptionHelpUrl = \App\Support\BackUrl::withBack('/admin/site-subscriptions?' . \Illuminate\Support\Arr::query([ 'merchant_id' => (int) ($order->merchant_id ?? 0) ?: null, 'plan_id' => (int) ($order->plan_id ?? 0) ?: null, + // 从订单详情跳过去挑订阅:在订阅列表行内提供“一键绑定到该订单”按钮 + 'attach_order_id' => (int) ($order->id ?? 0) ?: null, + 'attach_back' => $orderShowSelf, 'page' => null, ]), $orderShowSelf); }