细节调整

This commit is contained in:
kron
2025-07-11 22:21:34 +08:00
parent 81c064ba8b
commit e0807eb06a
14 changed files with 98 additions and 57 deletions

View File

@@ -28,9 +28,11 @@ defineProps({
<text>Round {{ index + 1 }}</text>
<view>
<text>{{
result.blueArrows
.map((item) => item.ring)
.reduce((last, next) => last + next, 0)
result.blueArrows.length
? result.blueArrows
.map((item) => item.ring)
.reduce((last, next) => last + next, 0)
: ""
}}</text>
<text></text>
</view>
@@ -41,9 +43,11 @@ defineProps({
<text>Round {{ index + 1 }}</text>
<view>
<text>{{
result.redArrows
.map((item) => item.ring)
.reduce((last, next) => last + next, 0)
result.redArrows.length
? result.redArrows
.map((item) => item.ring)
.reduce((last, next) => last + next, 0)
: ""
}}</text>
<text></text>
</view>