From 34c4f70887fedce0bb282ed78c19f5f81eaf9ed6 Mon Sep 17 00:00:00 2001 From: jcgitadmin <> Date: Sat, 16 Nov 2024 11:27:10 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AF=AE=E7=90=83=E9=A1=B5=E9=9D=A2=EF=BC=8C?= =?UTF-8?q?=E8=B0=83=E6=95=B4=E4=B8=BA=E4=B8=BB=E5=9C=BA=E5=9C=A8=E5=8F=B3?= =?UTF-8?q?=E5=AE=A2=E5=9C=BA=E5=9C=A8=E5=B7=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/ScoreItem.vue | 4 +++- src/components/SellingsTable.vue | 13 ++++++++++--- src/components/lottery/JczqCartItem.vue | 10 +++++++++- 3 files changed, 22 insertions(+), 5 deletions(-) diff --git a/src/components/ScoreItem.vue b/src/components/ScoreItem.vue index 2928390..2fde7a8 100644 --- a/src/components/ScoreItem.vue +++ b/src/components/ScoreItem.vue @@ -19,7 +19,8 @@
- {{ props.item.match.away_team_name }} + + {{ props.item.match.away_team_name }}
@@ -43,6 +44,7 @@
{{ props.item.match.home_team_name }} +
diff --git a/src/components/SellingsTable.vue b/src/components/SellingsTable.vue index 4627d4d..2387e2a 100644 --- a/src/components/SellingsTable.vue +++ b/src/components/SellingsTable.vue @@ -20,9 +20,16 @@ {{ selling.issue_num_week }}{{ selling.play_num_view||selling.play_num }} - {{ selling.vs_b }}
- {{ selling.vs_m }}
- {{ selling.vs_a }} + +
-
+
+
[客]{{ props.item.jc_away_team_name }}
+ VS +
{{ props.item.jc_home_team_name }}[主]
+
+
{{ props.item.jc_home_team_name }}
VS
{{ props.item.jc_away_team_name }}
@@ -28,6 +33,9 @@ import { PLAY_TYPES } from 'src/utils/const' const props = defineProps({ item:{ type: Object, + }, + lotteryType: { + type: String } }); const cartStore = useCartStore()