Files
shoot-miniprograms/src/components/UserHeader.vue

152 lines
2.9 KiB
Vue
Raw Normal View History

2025-05-01 21:38:35 +08:00
<script setup>
2025-05-26 16:28:13 +08:00
import { computed } from "vue";
2025-05-27 12:38:39 +08:00
import Avatar from "@/components/Avatar.vue";
2025-05-01 21:38:35 +08:00
const props = defineProps({
showRank: {
type: Boolean,
default: false,
},
2025-05-26 16:28:13 +08:00
user: {
type: Object,
default: () => ({
2025-05-27 12:38:39 +08:00
nickName: "",
2025-05-28 15:00:31 +08:00
avatarUrl: "",
2025-05-27 12:38:39 +08:00
lvl: 0,
points: 0,
rankLvl: 0,
lvlPoints: 0,
2025-05-26 16:28:13 +08:00
}),
},
2025-05-01 21:38:35 +08:00
});
const containerWidth = computed(() => (props.showRank ? "72vw" : "100vw"));
const toUserPage = () => {
// 获取当前页面路径
const pages = getCurrentPages();
const currentPage = pages[pages.length - 1];
2025-05-26 16:28:13 +08:00
2025-05-01 21:38:35 +08:00
// 如果当前不是用户页面才进行跳转
2025-05-26 16:28:13 +08:00
if (currentPage.route !== "pages/user") {
2025-05-01 21:38:35 +08:00
uni.navigateTo({
url: "/pages/user",
});
}
};
</script>
<template>
<view class="container" :style="{ width: containerWidth }">
2025-05-28 15:00:31 +08:00
<Avatar :frame="true" :src="user.avatarUrl" :onClick="toUserPage" />
2025-05-01 21:38:35 +08:00
<view class="user-details">
<view class="user-name">
2025-05-26 16:28:13 +08:00
<text>{{ user.nickName }}</text>
2025-06-08 12:52:49 +08:00
<image class="user-name-image" src="../static/vip1.png" mode="widthFix" />
2025-05-01 21:38:35 +08:00
</view>
<view class="user-stats">
2025-06-08 12:52:49 +08:00
<text class="level-tag level-tag-first">钻石1级</text>
<text class="level-tag level-tag-second">{{ user.lvl }}</text>
2025-05-01 21:38:35 +08:00
<view class="rank-tag">
2025-06-08 12:52:49 +08:00
<view class="rank-tag-progress" :style="{ width: '40%' }" />
<text class="rank-tag-text">{{ user.lvl }}/{{ user.lvlPoints }}</text>
2025-05-01 21:38:35 +08:00
</view>
</view>
</view>
<view v-if="showRank === true" class="rank-info">
2025-06-08 12:52:49 +08:00
<image class="rank-info-image" src="../static/global-rank.png" mode="widthFix" />
2025-05-01 21:38:35 +08:00
<text>本赛季全国</text>
2025-06-08 12:52:49 +08:00
<text class="rank-number"><text :style="{ color: '#ffd700' }">{{ user.points }}/{{ user.rankLvl }}</text></text>
2025-05-01 21:38:35 +08:00
</view>
</view>
</template>
<style scoped>
.container {
display: flex;
align-items: center;
width: 72vw;
padding-left: 15px;
color: #fff;
}
.user-details {
display: flex;
flex-direction: column;
padding-left: 10px;
}
.user-name {
display: flex;
align-items: center;
margin-bottom: 5px;
}
2025-06-08 12:52:49 +08:00
.user-name-image {
2025-05-01 21:38:35 +08:00
margin-left: 5px;
2025-05-08 22:05:53 +08:00
width: 20px;
2025-05-01 21:38:35 +08:00
}
.user-stats {
display: flex;
gap: 5px;
}
.level-tag {
text-align: center;
line-height: 16px;
}
2025-06-08 12:52:49 +08:00
.level-tag-first {
2025-05-01 21:38:35 +08:00
width: 45px;
background: #5f51ff;
}
2025-06-08 12:52:49 +08:00
.level-tag-second {
2025-05-01 21:38:35 +08:00
width: 30px;
background: #09c504;
}
.level-tag,
.rank-tag {
border-radius: 12px;
font-size: 10px;
}
.rank-tag {
position: relative;
background-color: #00000038;
2025-06-08 12:52:49 +08:00
width: 55px;
2025-05-01 21:38:35 +08:00
height: 16px;
}
2025-06-08 12:52:49 +08:00
.rank-tag-progress {
2025-05-01 21:38:35 +08:00
background: #ffa711;
height: 100%;
border-radius: 12px;
}
2025-06-08 12:52:49 +08:00
.rank-tag-text {
2025-05-01 21:38:35 +08:00
position: absolute;
top: 0;
left: 5px;
line-height: 16px;
}
.rank-info {
text-align: left;
2025-06-08 12:52:49 +08:00
font-size: 12px;
2025-05-01 21:38:35 +08:00
position: relative;
color: #b3b3b3;
padding-left: 8px;
}
2025-06-08 12:52:49 +08:00
.rank-info-image {
2025-05-01 21:38:35 +08:00
position: absolute;
2025-06-08 12:52:49 +08:00
top: -6px;
left: -9px;
2025-05-01 21:38:35 +08:00
width: 90px;
}
.rank-number {
display: block;
}
</style>