UI流程完善

This commit is contained in:
kron
2025-05-10 16:57:36 +08:00
parent a8834ad899
commit 0ce3b77f0a
32 changed files with 896 additions and 68 deletions

View File

@@ -1,13 +1,34 @@
<script setup>
import { ref } from "vue";
import AppBackground from "@/components/AppBackground.vue";
import Header from "@/components/Header.vue";
import ShootProgress from "@/components/ShootProgress.vue";
import BowTarget from "@/components/BowTarget.vue";
import ScorePanel2 from "@/components/ScorePanel2.vue";
const showScore = ref(false);
setTimeout(() => {
showScore.value = true;
}, 2000);
</script>
<template>
<view>
<AppBackground />
<view class="container">
<AppBackground type="1" />
<Header title="个人单组练习" />
<ShootProgress tips="请连续射箭36支" total="120" />
<BowTarget
totalRound="10"
currentRound="4"
avatar="../static/avatar.png"
power="45"
/>
<ScorePanel2 :scores="[1, 2, 3, 4, 5, 6]" />
</view>
</template>
<style scoped></style>
<style scoped>
.container {
position: relative;
}
</style>