细节调整
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user