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

173 lines
3.2 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-06-17 13:47:33 +08:00
import useStore from "@/store";
import { storeToRefs } from "pinia";
const store = useStore();
const { user } = storeToRefs(store);
2025-05-01 21:38:35 +08:00
const props = defineProps({
showRank: {
type: Boolean,
default: false,
},
});
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-06-16 11:26:57 +08:00
<Avatar
:frame="true"
2025-06-17 13:47:33 +08:00
:src="user.avatar"
2025-06-16 11:26:57 +08:00
:onClick="toUserPage"
:size="42"
/>
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-15 22:01:06 +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-15 22:01:06 +08:00
<image
class="rank-info-image"
src="../static/global-rank.png"
mode="widthFix"
/>
2025-06-16 11:26:57 +08:00
<text>本赛季</text>
<text>暂未上榜</text>
<!-- <text class="rank-number"
2025-06-15 22:01:06 +08:00
><text :style="{ color: '#ffd700' }"
>{{ user.points }}/{{ user.rankLvl }}</text
></text
2025-06-16 11:26:57 +08:00
> -->
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;
2025-06-16 11:26:57 +08:00
padding-left: 10px;
2025-05-01 21:38:35 +08:00
}
.user-name {
display: flex;
align-items: center;
margin-bottom: 5px;
}
2025-06-15 22:01:06 +08:00
.user-name > text:first-child {
2025-06-16 11:26:57 +08:00
font-size: 13px;
2025-06-15 22:01:06 +08:00
max-width: 100px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
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-06-16 11:26:57 +08:00
width: 40px;
2025-05-01 21:38:35 +08:00
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;
2025-06-16 11:26:57 +08:00
font-size: 9px;
2025-05-01 21:38:35 +08:00
}
.rank-tag {
position: relative;
background-color: #00000038;
2025-06-13 14:22:23 +08:00
width: 50px;
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-16 11:26:57 +08:00
display: flex;
flex-direction: column;
2025-05-01 21:38:35 +08:00
}
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>