2025-11-11 18:39:32 +08:00
|
|
|
<template>
|
|
|
|
|
<view class="settle-page">
|
|
|
|
|
<!-- 顶部导航 -->
|
|
|
|
|
<view class="nav-bar">
|
|
|
|
|
<view class="nav-home" @click="goHome">
|
|
|
|
|
<uni-icons type="home" size="24" color="#fff"></uni-icons>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="nav-title">计分器</view>
|
|
|
|
|
<view class="nav-actions">
|
|
|
|
|
<uni-icons type="more" size="24" color="#fff"></uni-icons>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<!-- 结算结果表格 -->
|
|
|
|
|
<view class="result-table">
|
|
|
|
|
<view class="table-header">
|
|
|
|
|
<text>玩家</text>
|
|
|
|
|
<text>胜负</text>
|
|
|
|
|
<text>得分</text>
|
|
|
|
|
<text>倍率分</text>
|
|
|
|
|
</view>
|
2025-11-24 15:30:05 +08:00
|
|
|
|
|
|
|
|
<!-- 动态渲染每个玩家的结算结果 -->
|
|
|
|
|
<view class="table-row" v-for="player in players" :key="player.id">
|
2025-11-11 18:39:32 +08:00
|
|
|
<view class="player-info">
|
2025-11-24 15:30:05 +08:00
|
|
|
<image class="player-avatar" :src="player.avatar" mode="aspectFit"></image>
|
|
|
|
|
<text class="player-name">{{ player.name }}</text>
|
2025-11-11 18:39:32 +08:00
|
|
|
</view>
|
2025-11-24 15:30:05 +08:00
|
|
|
<view class="win-lose">
|
|
|
|
|
<view class="win-tag" v-if="player.totalScore > 0">胜利!</view>
|
|
|
|
|
<view class="lose-tag" v-else-if="player.totalScore < 0">加油!</view>
|
|
|
|
|
<view class="draw-tag" v-else>平局</view>
|
|
|
|
|
</view>
|
|
|
|
|
<text class="score">{{ formatScore(player.totalScore) }}</text>
|
|
|
|
|
<text class="score">{{ formatScore(player.rateScore) }}</text>
|
2025-11-11 18:39:32 +08:00
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
2025-11-24 15:30:05 +08:00
|
|
|
<!-- 对局详情链接 - 修改为可点击 -->
|
|
|
|
|
<view class="detail-link" @click="goToGameDetail">
|
2025-11-11 18:39:32 +08:00
|
|
|
<text>对局详情</text>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<!-- 分享按钮 -->
|
|
|
|
|
<button class="share-btn" @click="shareResult">分享给好友结算信息</button>
|
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup>
|
2025-11-24 15:30:05 +08:00
|
|
|
import { ref, onMounted } from 'vue'
|
|
|
|
|
|
|
|
|
|
const players = ref([])
|
|
|
|
|
const rate = ref(1)
|
2025-11-11 18:39:32 +08:00
|
|
|
|
2025-11-24 15:30:05 +08:00
|
|
|
// 格式化分数显示
|
|
|
|
|
const formatScore = (score) => {
|
|
|
|
|
if (score === 0) return '0'
|
|
|
|
|
return score > 0 ? `+${score}` : `${score}`
|
|
|
|
|
}
|
2025-11-11 18:39:32 +08:00
|
|
|
|
2025-11-24 15:30:05 +08:00
|
|
|
// 页面加载时接收数据
|
|
|
|
|
onMounted(() => {
|
|
|
|
|
// 获取页面参数
|
|
|
|
|
const pages = getCurrentPages()
|
|
|
|
|
const currentPage = pages[pages.length - 1]
|
|
|
|
|
const options = currentPage.options || {}
|
|
|
|
|
|
|
|
|
|
// 获取倍率
|
|
|
|
|
rate.value = parseFloat(options.rate) || 1
|
|
|
|
|
|
|
|
|
|
// 从本地存储获取玩家数据和对局记录
|
|
|
|
|
const savedPlayers = uni.getStorageSync('players')
|
|
|
|
|
const savedRounds = uni.getStorageSync('gameRounds')
|
|
|
|
|
|
|
|
|
|
if (savedPlayers && savedRounds) {
|
|
|
|
|
// 计算每个玩家的总分和倍率分
|
|
|
|
|
players.value = savedPlayers.map(player => {
|
|
|
|
|
// 计算总分
|
|
|
|
|
let totalScore = 0
|
|
|
|
|
savedRounds.forEach(round => {
|
|
|
|
|
const roundScore = round.find(item => item.playerId === player.id)
|
|
|
|
|
if (roundScore) {
|
|
|
|
|
totalScore += roundScore.score
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// 计算倍率分
|
|
|
|
|
const rateScore = Math.round(totalScore * rate.value)
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
|
...player,
|
|
|
|
|
totalScore,
|
|
|
|
|
rateScore
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
// 如果没有数据,使用默认数据
|
|
|
|
|
players.value = [
|
|
|
|
|
{
|
|
|
|
|
id: 1,
|
|
|
|
|
name: '玩家80061',
|
|
|
|
|
avatar: 'https://ts1.tc.mm.bing.net/th/id/OIP-C.QQG4bvcAR3CJ0WeQULA9UQAAAA?w=275&h=211&c=8&rs=1&qlt=90&o=6&cb=ucfimgc1&dpr=1.5&pid=3.1&rm=2',
|
|
|
|
|
totalScore: 0,
|
|
|
|
|
rateScore: 0
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
2025-11-11 18:39:32 +08:00
|
|
|
})
|
|
|
|
|
|
2025-11-24 15:30:05 +08:00
|
|
|
// 跳转到对局详情页面
|
|
|
|
|
const goToGameDetail = () => {
|
|
|
|
|
uni.navigateTo({
|
|
|
|
|
url: '/pages/game-detail/index'
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 返回首页并清空数据
|
2025-11-11 18:39:32 +08:00
|
|
|
const goHome = () => {
|
2025-11-24 15:30:05 +08:00
|
|
|
// 清空本地存储的数据
|
|
|
|
|
uni.removeStorageSync('players')
|
|
|
|
|
uni.removeStorageSync('gameRounds')
|
|
|
|
|
|
2025-11-11 18:39:32 +08:00
|
|
|
uni.switchTab({
|
|
|
|
|
url: '/pages/index/index'
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-24 15:30:05 +08:00
|
|
|
// 分享功能
|
2025-11-11 18:39:32 +08:00
|
|
|
const shareResult = () => {
|
|
|
|
|
uni.showToast({
|
|
|
|
|
title: '分享功能待实现',
|
|
|
|
|
icon: 'none'
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
|
.settle-page {
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-bar {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
padding: 20rpx 30rpx;
|
|
|
|
|
background-color: #41479b;
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
|
|
.nav-home, .nav-actions {
|
|
|
|
|
width: 60rpx;
|
|
|
|
|
height: 60rpx;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.nav-title {
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.result-table {
|
|
|
|
|
margin: 30rpx;
|
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
|
border-radius: 12rpx;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.table-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-around;
|
|
|
|
|
padding: 20rpx;
|
|
|
|
|
background-color: #e8e8e8;
|
|
|
|
|
border-bottom: 1rpx solid #ddd;
|
|
|
|
|
|
|
|
|
|
text {
|
|
|
|
|
flex: 1;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.table-row {
|
|
|
|
|
display: flex;
|
|
|
|
|
padding: 20rpx;
|
2025-11-24 15:30:05 +08:00
|
|
|
border-bottom: 1rpx solid #ddd;
|
|
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
}
|
2025-11-11 18:39:32 +08:00
|
|
|
|
|
|
|
|
.player-info {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
|
|
|
|
.player-avatar {
|
|
|
|
|
width: 60rpx;
|
|
|
|
|
height: 60rpx;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
margin-right: 10rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.player-name {
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #000;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-24 15:30:05 +08:00
|
|
|
.win-lose {
|
2025-11-11 18:39:32 +08:00
|
|
|
flex: 1;
|
2025-11-24 15:30:05 +08:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
.win-tag {
|
|
|
|
|
background-color: #07c160;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
padding: 5rpx 15rpx;
|
|
|
|
|
border-radius: 8rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.lose-tag {
|
|
|
|
|
background-color: #fa5151;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
padding: 5rpx 15rpx;
|
|
|
|
|
border-radius: 8rpx;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.draw-tag {
|
|
|
|
|
background-color: #10aeff;
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
padding: 5rpx 15rpx;
|
|
|
|
|
border-radius: 8rpx;
|
|
|
|
|
}
|
2025-11-11 18:39:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.score {
|
|
|
|
|
flex: 1;
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 28rpx;
|
|
|
|
|
color: #666;
|
2025-11-24 15:30:05 +08:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2025-11-11 18:39:32 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.detail-link {
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin: 20rpx 0;
|
2025-11-24 15:30:05 +08:00
|
|
|
padding: 20rpx;
|
|
|
|
|
|
2025-11-11 18:39:32 +08:00
|
|
|
text {
|
|
|
|
|
font-size: 26rpx;
|
|
|
|
|
color: #41479b;
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
2025-11-24 15:30:05 +08:00
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
|
background-color: #f0f0f0;
|
|
|
|
|
}
|
2025-11-11 18:39:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.share-btn {
|
|
|
|
|
width: 600rpx;
|
|
|
|
|
height: 80rpx;
|
|
|
|
|
line-height: 80rpx;
|
|
|
|
|
margin: 30rpx auto;
|
|
|
|
|
background-color: #ffc107;
|
|
|
|
|
color: #333;
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
border-radius: 40rpx;
|
|
|
|
|
}
|
|
|
|
|
</style>
|