diff --git a/src/views/ChengduGamePage.vue b/src/views/ChengduGamePage.vue index 7c2f2d0..68683d9 100644 --- a/src/views/ChengduGamePage.vue +++ b/src/views/ChengduGamePage.vue @@ -294,6 +294,11 @@ const seatWinds = computed>(() => { return result }) +const currentTurnSeat = computed(() => { + const turnSeat = seatViews.value.find((seat) => seat.isTurn) + return turnSeat?.key ?? '' +}) + const currentPhaseText = computed(() => { const map: Record = { waiting: '等待中', @@ -2714,7 +2719,7 @@ onBeforeUnmount(() => { - +
等待房主开始游戏