bug:修复大乱斗前6箭不射导致分数块展示错乱的问题

This commit is contained in:
2026-05-12 10:46:27 +08:00
parent b7fdf97156
commit cf8d6135ff

View File

@@ -43,7 +43,7 @@ const rowCount = new Array(6).fill(0);
<view>
<view v-for="(_, index) in rowCount" :key="index">
<text>{{
scores[1] && scores[1][index] ? `${scores[0][index].ring}` : "-"
scores[1] && scores[1][index] ? `${scores[1][index].ring}` : "-"
}}</text>
</view>
</view>