This commit is contained in:
kron
2025-05-16 15:56:54 +08:00
parent 34c9dd00e2
commit 779b3395db
35 changed files with 1003 additions and 40 deletions

View File

@@ -5,6 +5,7 @@ import Header from "@/components/Header.vue";
import ShootProgress from "@/components/ShootProgress.vue";
import BowTarget from "@/components/BowTarget.vue";
import ScorePanel2 from "@/components/ScorePanel2.vue";
import ScoreResult from "@/components/ScoreResult.vue";
const showScore = ref(false);
setTimeout(() => {
@@ -16,7 +17,7 @@ setTimeout(() => {
<view class="container">
<AppBackground type="1" />
<Header title="个人单组练习" />
<ShootProgress tips="请连续射箭36支" total="120" />
<ShootProgress tips="请开始射箭第一轮" total="120" />
<BowTarget
totalRound="10"
currentRound="4"
@@ -24,6 +25,12 @@ setTimeout(() => {
power="45"
/>
<ScorePanel2 :scores="[1, 2, 3, 4, 5, 6]" />
<ScoreResult
:total="12"
:rowCount="6"
:show="showScore"
:onClose="() => (showScore = false)"
/>
</view>
</template>