This commit is contained in:
kron
2025-07-08 20:08:25 +08:00
parent 4f56bdb8f0
commit db419ae003
2 changed files with 4 additions and 1 deletions

View File

@@ -220,6 +220,9 @@ const simulShoot2 = async () => {
<button @click="simulShoot">模拟</button> <button @click="simulShoot">模拟</button>
<button @click="simulShoot2">射箭</button> <button @click="simulShoot2">射箭</button>
</view> </view>
<text :style="{ color: '#fff', wordBreak: 'break-all' }">{{
scores.length ? scores[scores.length - 1] : ""
}}</text>
<StartCountdown :start="startCount" /> <StartCountdown :start="startCount" />
</view> </view>
</template> </template>

View File

@@ -59,7 +59,7 @@ onUnmounted(() => {
> >
<view :style="{ display: 'flex', flexDirection: 'column' }"> <view :style="{ display: 'flex', flexDirection: 'column' }">
<text :style="{ color: '#fed847' }">请预先射几箭测试</text> <text :style="{ color: '#fed847' }">请预先射几箭测试</text>
<text>请确保射击距离有5米</text> <text>请确保射击距离有5米</text>
</view> </view>
<BowPower :power="power" /> <BowPower :power="power" />
</view> </view>