From 9c700b22412b770fbb12536ed8e64cd2b712117c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Fri, 13 Mar 2026 21:24:34 +0000 Subject: [PATCH] =?UTF-8?q?=E5=B9=B3=E5=8F=B0=E8=AE=A2=E5=8D=95=E8=AF=A6?= =?UTF-8?q?=E6=83=85=EF=BC=9A=E5=AF=BC=E5=87=BA=E9=93=BE=E6=8E=A5=20query?= =?UTF-8?q?=20=E9=A1=BA=E5=BA=8F=E7=A8=B3=E5=AE=9A=EF=BC=88download=20?= =?UTF-8?q?=E4=BC=98=E5=85=88=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/views/admin/platform_orders/show.blade.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/views/admin/platform_orders/show.blade.php b/resources/views/admin/platform_orders/show.blade.php index 6432f26..fc4df36 100644 --- a/resources/views/admin/platform_orders/show.blade.php +++ b/resources/views/admin/platform_orders/show.blade.php @@ -328,7 +328,8 @@

支付回执(对账留痕)

@php $makeExportLedgerUrl = function (array $query = []) use ($order) { - $query = $query + ['download' => 1]; + // download 必须显式为 1(导出安全阀),且为了测试/口径稳定,固定放在 query 的第一位 + $query = ['download' => 1] + $query; return '/admin/platform-orders/' . $order->id . '/export-ledger?' . \Illuminate\Support\Arr::query($query); };