123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546 |
- <template>
- <div class="ranking-board-page">
- <!-- 赛事名称标题 -->
- <div class="event-title">
- <h2>{{defaultEventInfo ? defaultEventInfo.eventName : '赛事排行榜'}}</h2>
- <p>随时掌握运动会情况</p>
- </div>
- <el-row :gutter="20" class="ranking-row">
- <el-col :span="8">
- <el-card shadow="hover" class="ranking-card">
- <template #header>
- <div class="card-header header-one">
- <span>个人积分排行榜</span>
- </div>
- </template>
- <div class="ranking-list ranking-list-full">
- <div v-for="(item, index) in athleteScoreList" :key="index" class="ranking-item">
- <div class="item-content">
- <span class="item-rank">{{ getRankDisplay(item, index, athleteScoreList) }}</span>
- <span class="item-name">{{ item.athleteName }}</span>
- <span class="item-team">{{ item.teamName }}</span>
- <span class="item-time">{{ item.totalScore }}</span>
- </div>
- </div>
- </div>
- </el-card>
- </el-col>
- <el-col :span="8">
- <el-card shadow="hover" class="ranking-card">
- <template #header>
- <div class="card-header header-three">
- <div class="team-ranking-header">
- <span>团队积分排行榜</span>
- <!-- 添加分组筛选下拉框 -->
- <el-select
- v-model="selectedRankGroupId"
- placeholder="选择分组"
- clearable
- size="small"
- @change="handleRankGroupChange"
- style="margin-left: 10px; width: 120px;"
- >
- <el-option label="全部队伍" :value="null"></el-option>
- <el-option
- v-for="group in rankGroupOptions"
- :key="group.rgId"
- :label="group.rgName"
- :value="group.rgId"
- />
- </el-select>
- </div>
- </div>
- </template>
- <div class="ranking-list ranking-list-full">
- <div v-for="(item, index) in filteredTeamScores" :key="index" class="ranking-item">
- <div class="item-content">
- <span class="item-rank">{{ getRankDisplay(item, index, filteredTeamScores) }}</span>
- <span class="item-team-name">{{ item.teamName }}</span>
- <span class="item-score">{{ item.score }}分</span>
- </div>
- </div>
- </div>
- </el-card>
- </el-col>
- <el-col :span="8">
- <el-card shadow="hover" class="ranking-card">
- <template #header>
- <div class="card-header header-two">
- <span>项目进度</span>
- </div>
- </template>
- <div class="progress-info">
- <p>{{ completedTasks }} / {{ totalTasks }}</p>
- <el-progress :percentage="progressPercentage" />
- </div>
- <div class="ranking-list ranking-list-full">
- <div v-for="(item, index) in projectProgress" :key="index" class="ranking-item">
- <div class="item-content">
- <span class="item-name">{{ item.projectName }}</span>
- <span class="item-type">{{ getProjectTypeText(item.projectType) }} {{ item.classification === '0' ? '个人' : '团体' }}</span>
- <span class="item-time">{{ formatTime(item.startTime) }}</span>
- </div>
- <!-- 如果有组别信息,显示组别详情 -->
- <div v-if="item.groups && item.groups.length > 0" class="group-details">
- <div v-for="group in item.groups" :key="group.groupId" class="group-item">
- <span class="group-name">{{ group.groupName }}</span>
- <span class="group-time">{{ formatTimeOnly(group.beginTime) }}</span>
- <span class="group-status" :class="'status-' + group.status">{{ group.statusText }}</span>
- </div>
- </div>
- </div>
- </div>
- </el-card>
- </el-col>
- </el-row>
- </div>
- </template>
- <script setup lang="ts">
- import { ref, computed, onMounted } from 'vue';
- import { listScoreRanking, listPersonalRanking, listTeamRanking } from '@/api/system/gameEvent/eventRank';
- import { listGameScore } from '@/api/system/gameScore';
- import { listGameTeam } from '@/api/system/gameTeam';
- import { getProjectProgress } from '@/api/system/gameEvent/projectProgress';
- import { useRouter,useRoute } from 'vue-router';
- import { GameTeamVO } from '@/api/system/gameTeam/types';
- import { ProjectProgressVo, GroupProgressVo } from '@/api/system/gameEvent/types';
- import { useGameEventStore } from '@/store/modules/gameEvent';
- import { storeToRefs } from 'pinia';
- import { listRankGroup } from '@/api/system/rankGroup'; // 新增导入
- import { RankGroupVO } from '@/api/system/rankGroup/types'; // 新增导入
- // 定义队伍积分排行榜的数据结构
- interface TeamScore {
- rgId: string | number;
- teamId: string | number;
- teamName: string;
- score: number;
- rank: number;
- }
- const { proxy } = getCurrentInstance() as ComponentInternalInstance;
- const { game_project_type } = toRefs<any>(proxy?.useDict('game_project_type'));
- // const route = useRoute();
- // const eventId = route.params.eventId as string;
- //从pinia中获取默认赛事信息
- const gameEventStore = useGameEventStore();
- const { defaultEventInfo } = storeToRefs(gameEventStore);
- const athleteScoreList = ref([]);
- const completedTasks = ref(0);
- const totalTasks = ref(0);
- const progressPercentage = computed(() => totalTasks.value > 0 ? (completedTasks.value / totalTasks.value) * 100 : 0);
- const projectProgress = ref<ProjectProgressVo[]>([]);
- const teamScores = ref<TeamScore[]>([]);
- const filteredTeamScores = ref<TeamScore[]>([]); // 用于显示筛选后的队伍积分
- // 分组相关数据
- const rankGroupOptions = ref<RankGroupVO[]>([]);
- const selectedRankGroupId = ref<number | null>(null);
- // 获取队伍积分排行榜
- const loadTeamScores = async () => {
- // 获取所有成绩数据
- const scoreRes = await listGameScore({
- eventId: defaultEventInfo.value.eventId,
- pageNum: 1,
- pageSize: 1000,
- orderByColumn: '',
- isAsc: ''
- });
- const scores = scoreRes.rows;
-
- // 获取所有队伍信息
- const teamRes = await listGameTeam({
- eventId: defaultEventInfo.value.eventId,
- pageNum: 1,
- pageSize: 1000,
- orderByColumn: '',
- isAsc: ''
- });
- const teams = teamRes.rows;
-
- // 计算每个队伍的总积分
- const teamScoreMap = new Map();
- scores.forEach(score => {
- const teamId = score.teamId;
- if (teamId) {
- if (teamScoreMap.has(teamId)) {
- teamScoreMap.set(teamId, teamScoreMap.get(teamId) + score.scorePoint);
- } else {
- teamScoreMap.set(teamId, score.scorePoint);
- }
- }
- });
-
- // 将队伍信息和积分结合
- const teamScoreList = teams.map(team => {
- return {
- teamId: team.teamId,
- teamName: team.teamName,
- score: teamScoreMap.get(team.teamId) || 0,
- rank: 0, // 占位符,稍后设置
- rgId: team.rgId // 添加分组ID
- };
- });
-
- // 按积分从高到低排序
- teamScoreList.sort((a, b) => b.score - a.score);
-
- // 添加排名(支持并列排名)
- let currentRank = 1;
- for (let i = 0; i < teamScoreList.length; i++) {
- const team = teamScoreList[i];
- const currentScore = team.score || 0;
-
- // 如果不是第一个,检查是否与前一个积分相同
- if (i > 0) {
- const previousScore = teamScoreList[i - 1].score || 0;
- if (currentScore !== previousScore) {
- currentRank = i + 1;
- }
- }
-
- team.rank = currentRank;
- }
-
- teamScores.value = teamScoreList;
- // 默认显示所有队伍
- filteredTeamScores.value = teamScoreList;
- };
- // 处理分组筛选变化
- const handleRankGroupChange = (rgId: number | null) => {
- if (rgId === null) {
- // 显示所有队伍
- filteredTeamScores.value = teamScores.value;
- } else {
- // 筛选指定分组的队伍
- filteredTeamScores.value = teamScores.value.filter(team => team.rgId === rgId);
- }
-
- // 重新计算排名
- let currentRank = 1;
- for (let i = 0; i < filteredTeamScores.value.length; i++) {
- const team = filteredTeamScores.value[i];
- const currentScore = team.score || 0;
-
- if (i > 0) {
- const previousScore = filteredTeamScores.value[i - 1].score || 0;
- if (currentScore !== previousScore) {
- currentRank = i + 1;
- }
- }
-
- team.rank = currentRank;
- }
- };
- // 获取分组选项
- const loadRankGroupOptions = async () => {
- try {
- const res = await listRankGroup({
- eventId: defaultEventInfo.value.eventId,
- pageNum: 1,
- pageSize: 1000,
- orderByColumn: undefined,
- isAsc: undefined,
- status: '0'
- });
- rankGroupOptions.value = res.rows;
- } catch (error) {
- console.error('获取分组列表失败:', error);
- }
- };
- // 加载项目进度信息
- const loadProjectProgress = async () => {
- try {
- const res = await getProjectProgress(defaultEventInfo.value.eventId);
- projectProgress.value = res.data || [];
-
- // 计算已完成和总任务数
- let completed = 0;
- let total = 0;
-
- projectProgress.value.forEach(project => {
- if (project.groups && project.groups.length > 0) {
- // 有组别的项目,统计组别
- project.groups.forEach(group => {
- total++;
- if (group.status === '2') { // 已完成
- completed++;
- }
- });
- } else {
- // 没有组别的项目,直接统计项目
- total++;
- if (project.status === '2') { // 已完成
- completed++;
- }
- }
- });
-
- completedTasks.value = completed;
- totalTasks.value = total;
-
- // 前端也可以做一次排序确保,虽然后端已经排序了
- // 按完整时间排序(项目时间或最早组别时间)
- projectProgress.value.sort((a, b) => {
- const getEarliestTime = (project: ProjectProgressVo) => {
- if (project.groups && project.groups.length > 0) {
- // 有组别,找到最早的组别时间
- const groupTimes = project.groups
- .map(g => g.beginTime ? new Date(g.beginTime).getTime() : 0)
- .filter(time => time > 0);
- if (groupTimes.length > 0) {
- return Math.min(...groupTimes);
- }
- }
- // 没有组别或组别时间无效,使用项目时间
- return project.startTime ? new Date(project.startTime).getTime() : 0;
- };
-
- const aTime = getEarliestTime(a);
- const bTime = getEarliestTime(b);
-
- return aTime - bTime;
- });
- } catch (error) {
- console.error('加载项目进度失败:', error);
- }
- };
- // 获取项目类型文本
- const getProjectTypeText = (projectType: string) => {
- if (!game_project_type.value || !projectType) return '未知';
-
- const typeItem = game_project_type.value.find((item: any) => item.value === projectType);
- return typeItem ? typeItem.label : '未知';
- };
- // 格式化时间显示(包含日期)
- const formatTime = (timeStr: string) => {
- if (!timeStr) return '-';
- try {
- const date = new Date(timeStr);
- // 检查是否是有效日期
- if (isNaN(date.getTime())) {
- return timeStr;
- }
- return date.toLocaleString('zh-CN', {
- month: '2-digit',
- day: '2-digit',
- hour: '2-digit',
- minute: '2-digit',
- hour12: false
- });
- } catch (error) {
- return timeStr;
- }
- };
- // 格式化时间显示(仅时间,用于组别详情)
- const formatTimeOnly = (timeStr: string) => {
- if (!timeStr) return '-';
- try {
- const date = new Date(timeStr);
- // 检查是否是有效日期
- if (isNaN(date.getTime())) {
- return timeStr;
- }
- return date.toLocaleTimeString('zh-CN', {
- hour: '2-digit',
- minute: '2-digit',
- hour12: false
- });
- } catch (error) {
- return timeStr;
- }
- };
- // 获取排名显示文本(支持并列排名,排名数值连续)
- const getRankDisplay = (item: any, index: number, list: any[]) => {
- // 如果项目有rank字段(如团队排名),直接使用
- if (item.rank !== undefined) {
- return `第${item.rank}名`;
- }
-
- // 个人排名逻辑(排名数值连续)
- // 计算当前项目的实际排名
- // 排名 = 比当前积分高的不同积分数量 + 1
- const currentScore = item.totalScore || 0;
- const higherScores = new Set();
-
- for (let i = 0; i < list.length; i++) {
- if (list[i].totalScore > currentScore) {
- higherScores.add(list[i].totalScore);
- }
- }
-
- const actualRank = higherScores.size + 1;
- return `第${actualRank}名`;
- };
- onMounted(async () => {
- try{
- const res = await listScoreRanking(defaultEventInfo.value.eventId.toString());
- // 按照totalScore字段降序排序(分数高的在前面)
- athleteScoreList.value = res.data.sort((a, b) => b.totalScore - a.totalScore);
- // 加载队伍积分排行榜
- await loadTeamScores();
- // 加载分组选项
- await loadRankGroupOptions();
- // 加载项目进度信息
- await loadProjectProgress();
- } catch (error) {
- console.error('加载数据失败:', error);
- }
- });
- </script>
- <style scoped>
- .ranking-board-page {
- padding: 20px;
- height: calc(100vh - 120px);
- }
- /* 赛事名称标题样式 */
- .event-title {
- margin-bottom: 20px;
- text-align: center;
- }
- .event-title h2 {
- font-size: 24px;
- margin: 0;
- }
- .event-title p {
- font-size: 16px;
- color: #666;
- margin: 5px 0 0;
- }
- .ranking-row {
- height: calc(100% - 70px); /* 调整高度以适应新增标题区域 */
- }
- .ranking-card {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- }
- .card-header {
- font-weight: bold;
- font-size: 16px;
- color: black;
- text-align: center;
- }
- /* 团队排行榜头部样式 */
- .team-ranking-header {
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .progress-info {
- margin-bottom: 15px;
- }
- .ranking-list {
- max-height: 800px;
- overflow-y: auto;
- }
- .ranking-list-full {
- flex: 1;
- overflow-y: auto;
- }
- .ranking-item {
- padding: 10px 0;
- border-bottom: 1px solid #f0f0f0;
- }
- .ranking-item:last-child {
- border-bottom: none;
- }
- .item-content {
- display: flex;
- justify-content: space-between;
- }
- .item-name {
- flex: 2;
- text-align: left;
- }
- .item-team,
- .item-time,
- .item-type,
- .item-rank,
- .item-team-name,
- .item-score {
- flex: 1;
- text-align: center;
- }
- /* 组别详情样式 */
- .group-details {
- margin-top: 8px;
- padding-left: 20px;
- border-left: 2px solid #e0e0e0;
- }
- .group-item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 4px 0;
- font-size: 12px;
- color: #666;
- }
- .group-name {
- flex: 3;
- text-align: left;
- }
- .group-time {
- flex: 2;
- text-align: center;
- }
- .group-status {
- flex: 1;
- text-align: center;
- padding: 2px 6px;
- border-radius: 10px;
- font-size: 10px;
- }
- .status-0 {
- background-color: #f0f0f0;
- color: #999;
- }
- .status-1 {
- background-color: #e6f7ff;
- color: #1890ff;
- }
- .status-2 {
- background-color: #f6ffed;
- color: #52c41a;
- }
- </style>
|