From c3261e553d37d4eaeedc0bd0813bd24f681cbf6b Mon Sep 17 00:00:00 2001 From: Council Date: Thu, 23 Apr 2026 14:44:19 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=B7=BB=E5=8A=A0=20shortCodeDecode=20?= =?UTF-8?q?=E7=BC=BA=E5=A4=B1=E7=9A=84=20return=20=E8=AF=AD=E5=8F=A5?= =?UTF-8?q?=E5=92=8C=E9=97=AD=E5=90=88=E6=8B=AC=E5=8F=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shopxo/app/plugins/vr_ticket/service/BaseService.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shopxo/app/plugins/vr_ticket/service/BaseService.php b/shopxo/app/plugins/vr_ticket/service/BaseService.php index f1510f3..3453c27 100644 --- a/shopxo/app/plugins/vr_ticket/service/BaseService.php +++ b/shopxo/app/plugins/vr_ticket/service/BaseService.php @@ -474,7 +474,10 @@ class BaseService // 转回 base36 字符串(不填充) $ticket_id = intval(base_convert($ticket_int, 10, 36), 36); - return ['goods_id' => $goods_id, 'ticket_id' => $ticket_id]; + return [ + 'goods_id' => $goods_id, + 'ticket_id' => $ticket_id, + ]; } /**