183 lines
3.6 KiB
Vue
183 lines
3.6 KiB
Vue
<template>
|
|
<div style="width: 100%">
|
|
<div style="position: relative">
|
|
<img
|
|
:src="BorderImgUrl"
|
|
alt=""
|
|
width="100%"
|
|
style="display: block; position: relative; z-index: 2"
|
|
/>
|
|
<!-- 头像 -->
|
|
<div
|
|
style="
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 1;
|
|
display: flex;
|
|
justify-content: center;
|
|
"
|
|
:style="{ height: isTopOne ? '61%' : '58%' }"
|
|
>
|
|
<div :style="{ width: isTopOne ? '50%' : '50%', marginTop: isTopOne ? '30%' : '30%' }">
|
|
<img
|
|
:src="avatarUrl || ''"
|
|
alt=""
|
|
width="100%"
|
|
style="border-radius: 50%; aspect-ratio: 1/1; object-fit: cover"
|
|
@error="defaultAvatarUrl"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<!-- 用户名和贡献值 -->
|
|
<div
|
|
style="
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 3;
|
|
height: 40%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 4px;
|
|
"
|
|
>
|
|
<div
|
|
style="
|
|
height: 30%;
|
|
width: 50%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
"
|
|
>
|
|
<div style="font-weight: 860" class="showText" :class="isTopOne ? 'top1Text' : 'text'">
|
|
{{ name }}
|
|
</div>
|
|
</div>
|
|
<div
|
|
style="
|
|
width: 60%;
|
|
border-radius: 40px;
|
|
border: 0.64px solid #ffdf36;
|
|
background: linear-gradient(
|
|
270deg,
|
|
transparent 0%,
|
|
rgba(255, 255, 255, 0.6) 50%,
|
|
transparent 100%
|
|
);
|
|
box-shadow: 0 0 2.558px 0 rgba(0, 0, 0, 0.6) inset;
|
|
|
|
padding: 2px 4px;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
"
|
|
>
|
|
<img
|
|
src="/src/assets/icon/coin.png"
|
|
alt=""
|
|
style="display: block"
|
|
:style="{ width: isTopOne ? '25%' : '35%' }"
|
|
/>
|
|
<div
|
|
style="font-weight: 700; color: #ffe601"
|
|
class="showText"
|
|
:class="isTopOne ? 'top1Text' : 'text'"
|
|
>
|
|
{{ distributionValue }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
const props = defineProps({
|
|
isTopOne: {
|
|
type: Boolean,
|
|
default: true,
|
|
},
|
|
|
|
avatarUrl: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
|
|
BorderImgUrl: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
|
|
name: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
|
|
distributionValue: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
})
|
|
|
|
import defaultAvatar from '@/assets/icon/defaultAvatar.png'
|
|
|
|
const defaultAvatarUrl = (e) => {
|
|
console.log('头像资源出错')
|
|
e.target.onerror = null //防止循环
|
|
e.target.src = defaultAvatar
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
* {
|
|
font-family: 'SF Pro';
|
|
color: black;
|
|
}
|
|
|
|
.showText {
|
|
color: #fff;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.top1Text {
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
.text {
|
|
font-size: 0.6em;
|
|
}
|
|
|
|
@media screen and (max-width: 360px) {
|
|
* {
|
|
font-size: 10px;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 360px) {
|
|
* {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
* {
|
|
font-size: 24px;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 1024px) {
|
|
* {
|
|
font-size: 32px;
|
|
}
|
|
}
|
|
</style>
|