diff --git a/src/components/BowTarget.vue b/src/components/BowTarget.vue
index fe3a6f5..9541a49 100644
--- a/src/components/BowTarget.vue
+++ b/src/components/BowTarget.vue
@@ -1,6 +1,5 @@
-
-
-
-
- 5人大乱斗
-
-
-
-
-
- onSelect(player.playerId)"
- >
-
-
-
- {{ index + 1 }}
-
- 积分
- {{
- player.totalScore > 0 ? "+" + player.totalScore : player.totalScore
- }}分
- {{ player.totalRings }}环
-
- {{ arrow.ring }}环
-
-
-
-
-
-
- {{ scores.length }}支箭,共{{
- scores.reduce((last, next) => last + next.ring, 0)
- }}环
-
-
- {{ score.ring }}
-
-
-
-
-
-
diff --git a/src/components/StartCountdown.vue b/src/components/StartCountdown.vue
deleted file mode 100644
index 0ec0f19..0000000
--- a/src/components/StartCountdown.vue
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
-
- 3
- 2
- 1
-
-
-
-
diff --git a/src/components/TeamResult.vue b/src/components/TeamResult.vue
deleted file mode 100644
index d4463b5..0000000
--- a/src/components/TeamResult.vue
+++ /dev/null
@@ -1,214 +0,0 @@
-
-
-
-
-
- 1v1排位赛
-
-
-
-
-
- onClickTab(index)"
- :class="selected === index ? 'selected-tab' : ''"
- >
- {{ tab }}
-
-
-
-
-
-
-
-
- {{ ring }}
-
-
- {{ score.ring }}
-
-
-
-
-
-
diff --git a/src/pages/match-detail.vue b/src/pages/match-detail.vue
index 9897c46..4d5d00c 100644
--- a/src/pages/match-detail.vue
+++ b/src/pages/match-detail.vue
@@ -4,8 +4,6 @@ import { onLoad } from "@dcloudio/uni-app";
import Container from "@/components/Container.vue";
import BattleHeader from "@/components/BattleHeader.vue";
import Avatar from "@/components/Avatar.vue";
-// import TeamResult from "@/components/TeamResult.vue";
-// import MeleeResult from "@/components/MeleeResult.vue";
import PlayerScore2 from "@/components/PlayerScore2.vue";
import { getGameAPI } from "@/apis";
@@ -17,7 +15,6 @@ const battleId = ref("");
const data = ref({
players: [],
});
-// const show = ref(false);
onLoad(async (options) => {
if (options.id) {
@@ -255,18 +252,6 @@ const checkBowData = () => {
-