From 88b9e49108fe6664e08e1991ba1e125fab2317c3 Mon Sep 17 00:00:00 2001 From: li Date: Wed, 11 Feb 2026 01:37:02 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E7=89=9B=E7=89=9B/?= =?UTF-8?q?=E4=B8=89=E5=8D=A1=E8=B7=AF=E5=8D=95=E5=9C=A8=E5=A4=A7=E5=8E=85?= =?UTF-8?q?=E4=B8=8D=E6=98=BE=E7=A4=BA=E7=9A=84=E9=97=AE=E9=A2=98=EF=BC=8C?= =?UTF-8?q?=E9=80=82=E9=85=8Dnn=5Fwaybill=E6=95=B0=E6=8D=AE=E7=BB=93?= =?UTF-8?q?=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/index.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pages/index.vue b/pages/index.vue index 0c9e903..399df25 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -222,7 +222,12 @@ export default { // Extract Bead Road (showRoad usually) // Note: In helper.php, waybill() returns { showRoad, bigRoad ... } let beadRoad = []; - if (item.ludan && item.ludan.waybill && item.ludan.waybill.showRoad) { + if (item.game_id == 4 || item.game_id == 5) { + // 牛牛/三卡: ludan.waybill 直接就是数组 + if (item.ludan && Array.isArray(item.ludan.waybill)) { + beadRoad = item.ludan.waybill; + } + } else if (item.ludan && item.ludan.waybill && item.ludan.waybill.showRoad) { beadRoad = item.ludan.waybill.showRoad; }