细节调整

This commit is contained in:
kron
2025-07-10 19:55:30 +08:00
parent 7972dae398
commit e764160633
10 changed files with 63 additions and 71 deletions

View File

@@ -81,8 +81,9 @@ onMounted(() => {
</button>
</view>
<view :style="{ gridTemplateColumns: `repeat(${rowCount}, 1fr)` }">
<view v-for="(score, index) in result.arrows" :key="index">
{{ score.ring }}<text></text>
<view v-for="(_, index) in new Array(total).fill(0)" :key="index">
{{ result.arrows[index] ? result.arrows[index].ring : 0
}}<text></text>
</view>
</view>
<view>
@@ -201,7 +202,8 @@ onMounted(() => {
row-gap: 10px;
column-gap: 5px;
justify-content: flex-start;
margin: 10px 0;
margin-top: 10px;
margin-bottom: 15px;
}
.container-content > view:nth-child(2) > view {
background: linear-gradient(#fbfbfb, #f5f5f5);