Files
shoot-miniprograms/src/pages/match-detail.vue

232 lines
6.5 KiB
Vue
Raw Normal View History

2025-06-08 12:52:49 +08:00
<script setup>
import { ref } from "vue";
import { onLoad } from "@dcloudio/uni-app";
import Container from "@/components/Container.vue";
import BattleHeader from "@/components/BattleHeader.vue";
import Avatar from "@/components/Avatar.vue";
2025-06-24 13:18:03 +08:00
// import TeamResult from "@/components/TeamResult.vue";
// import MeleeResult from "@/components/MeleeResult.vue";
2025-06-25 01:46:04 +08:00
import PlayerScore2 from "@/components/PlayerScore2.vue";
2025-06-14 22:45:07 +08:00
import { getGameAPI } from "@/apis";
2025-06-08 12:52:49 +08:00
2025-06-14 22:45:07 +08:00
const blueTeam = ref([]);
const redTeam = ref([]);
const roundsData = ref([]);
2025-06-24 13:18:03 +08:00
const battleId = ref("");
2025-06-20 01:47:57 +08:00
const data = ref({
players: [],
});
2025-06-24 13:18:03 +08:00
// const show = ref(false);
2025-06-08 12:52:49 +08:00
2025-06-11 23:57:03 +08:00
onLoad(async (options) => {
if (options.id) {
2025-06-28 12:38:38 +08:00
battleId.value = options.id || "BATTLE-1750946182966867665-941";
const result = await getGameAPI(battleId.value);
2025-06-14 22:45:07 +08:00
data.value = result;
if (result.mode === 1) {
blueTeam.value = Object.values(result.bluePlayers || {});
redTeam.value = Object.values(result.redPlayers || {});
Object.values(result.roundsData).forEach((item) => {
let blueId = Object.keys(item)[0];
let redId = Object.keys(item)[1];
if (!result.bluePlayers[blueId]) {
blueId = Object.keys(item)[1];
redId = Object.keys(item)[0];
}
roundsData.value.push({
blue: {
name: result.bluePlayers[blueId].name,
avatar: result.bluePlayers[blueId].avatar,
arrows: item[blueId],
2025-06-17 21:34:41 +08:00
totalRing: item[blueId].reduce((a, b) => a + b.ring, 0),
2025-06-14 22:45:07 +08:00
totalScore: item[blueId].reduce((a, b) => a + b.ringScore, 0),
},
red: {
name: result.redPlayers[redId].name,
avatar: result.redPlayers[redId].avatar,
arrows: item[redId],
2025-06-17 21:34:41 +08:00
totalRing: item[redId].reduce((a, b) => a + b.ring, 0),
2025-06-14 22:45:07 +08:00
totalScore: item[redId].reduce((a, b) => a + b.ringScore, 0),
},
});
});
}
2025-06-11 23:57:03 +08:00
}
2025-06-08 12:52:49 +08:00
});
2025-06-24 13:18:03 +08:00
const checkBowData = () => {
if (data.value.mode === 1) {
uni.navigateTo({
url: `/pages/team-bow-data?battleId=${battleId.value}`,
});
} else if (data.value.mode === 2) {
uni.navigateTo({
url: `/pages/melee-bow-data?battleId=${battleId.value}`,
});
}
};
2025-06-08 12:52:49 +08:00
</script>
<template>
<Container title="详情">
<view class="container">
<BattleHeader
2025-06-18 02:02:09 +08:00
:winner="data.winner"
2025-06-14 22:45:07 +08:00
:blueTeam="blueTeam"
:redTeam="redTeam"
2025-06-20 01:47:57 +08:00
:players="data.players"
2025-06-08 12:52:49 +08:00
/>
2025-06-14 22:45:07 +08:00
<!-- <view class="score-header">
2025-06-08 12:52:49 +08:00
<text>决金箭轮环数</text>
<view>
<text>查看靶纸</text>
<image src="../static/back.png" mode="widthFix" />
</view>
</view>
<view class="score-row">
<view>
<Avatar src="../static/avatar.png" :size="25" :borderColor="1" />
<text>9</text>
<text>10</text>
<text>7</text>
</view>
<image src="../static/winner-badge.png" mode="widthFix" />
</view>
<view class="score-row" :style="{ marginBottom: '5px' }">
<view>
<Avatar src="../static/avatar.png" :size="25" :borderColor="2" />
<text>9</text>
<text>10</text>
<text>7</text>
</view>
2025-06-14 22:45:07 +08:00
</view> -->
2025-06-20 01:47:57 +08:00
<view
v-if="data.players && data.players.length"
class="score-header"
:style="{ border: 'none', padding: '5px 15px' }"
>
<text>大乱斗</text>
2025-06-24 13:18:03 +08:00
<view @click="checkBowData">
2025-06-20 01:47:57 +08:00
<text>查看靶纸</text>
<image src="../static/back.png" mode="widthFix" />
</view>
</view>
2025-06-25 01:46:04 +08:00
<PlayerScore2
2025-06-20 01:47:57 +08:00
v-if="data.players && data.players.length"
v-for="(player, index) in data.players"
:key="index"
:name="player.name"
:avatar="player.avatar"
:scores="player.arrowHistory"
2025-06-25 01:46:04 +08:00
:totalScore="player.totalScore"
:totalRing="player.totalRings"
:rank="index + 1"
2025-06-20 01:47:57 +08:00
/>
2025-06-14 22:45:07 +08:00
<view
v-for="(round, index) in roundsData"
:key="index"
:style="{ marginBottom: '5px' }"
>
2025-06-08 12:52:49 +08:00
<view class="score-header">
2025-06-14 22:45:07 +08:00
<text>{{ index + 1 }}</text>
2025-06-24 13:18:03 +08:00
<view @click="checkBowData">
2025-06-08 12:52:49 +08:00
<text>查看靶纸</text>
<image src="../static/back.png" mode="widthFix" />
</view>
</view>
<view class="score-row">
<view>
2025-06-25 00:09:53 +08:00
<Avatar :src="round.blue.avatar" :size="25" borderColor="#64BAFF" />
2025-06-14 22:45:07 +08:00
<text v-for="(arrow, index2) in round.blue.arrows" :key="index2">
2025-06-17 21:34:41 +08:00
{{ arrow.ring }}
2025-06-14 22:45:07 +08:00
</text>
2025-06-08 12:52:49 +08:00
</view>
<view>
2025-06-14 22:45:07 +08:00
<text :style="{ color: '#64BAFF' }">
{{ round.blue.totalRing }}
</text>
<text>得分 {{ round.blue.totalScore }}</text>
2025-06-08 12:52:49 +08:00
</view>
</view>
2025-06-14 22:45:07 +08:00
<view class="score-row">
2025-06-08 12:52:49 +08:00
<view>
2025-06-25 00:09:53 +08:00
<Avatar :src="round.red.avatar" :size="25" borderColor="#FF6767" />
2025-06-14 22:45:07 +08:00
<text v-for="(arrow, index2) in round.red.arrows" :key="index2">
2025-06-17 21:34:41 +08:00
{{ arrow.ring }}
2025-06-14 22:45:07 +08:00
</text>
2025-06-08 12:52:49 +08:00
</view>
<view>
2025-06-14 22:45:07 +08:00
<text :style="{ color: '#FF6767' }">
{{ round.blue.totalRing }}
</text>
<text>得分 {{ round.blue.totalScore }}</text>
2025-06-08 12:52:49 +08:00
</view>
</view>
</view>
<view :style="{ height: '20px' }"></view>
</view>
2025-06-24 13:18:03 +08:00
<!-- <TeamResult
2025-06-14 22:45:07 +08:00
v-if="data.mode === 1"
:show="show"
:onClose="() => (show = false)"
:data="data"
/>
<MeleeResult
v-if="data.mode === 2"
:show="show"
:onClose="() => (show = false)"
:data="data"
2025-06-24 13:18:03 +08:00
/> -->
2025-06-08 12:52:49 +08:00
</Container>
</template>
<style scoped>
.container {
width: 100%;
height: 100%;
}
.score-header,
.score-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
color: #fff9;
font-size: 15px;
border-bottom: 1px solid #fff3;
}
.score-header > text:first-child {
color: #fed847;
}
.score-header > view:last-child {
display: flex;
align-items: center;
}
.score-header > view:last-child > image {
margin-left: 5px;
width: 15px;
height: 15px;
transform: rotate(180deg);
margin-top: -2px;
}
.score-row > view {
display: flex;
align-items: center;
}
.score-row > view:first-child > text {
margin-left: 20px;
color: #fff;
display: block;
width: 30px;
}
.score-row > image:last-child {
width: 40px;
}
.score-row > view:last-child {
padding-right: 5px;
}
.score-row > view:last-child > text:last-child {
margin-left: 20px;
}
</style>