|
|
<template>
|
|
|
<ImageFormat :lazy="lazy" class="img-avatar" :src="imageSrc" :width="width" :height="height" @error="errorHandle"></ImageFormat>
|
|
|
<div class="avatar-wrap">
|
|
|
<ImageFormat class="img-avatar" :lazy="lazy" :src="imageSrc" :width="width" :height="height" @error="errorHandle"></ImageFormat>
|
|
|
<span v-if="identityClass" class="identity-icon" :class="identityClass"></span>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
...
|
...
|
@@ -21,7 +24,12 @@ export default { |
|
|
lazy: {
|
|
|
type: Boolean,
|
|
|
default: false
|
|
|
}
|
|
|
},
|
|
|
small: {
|
|
|
type: Boolean,
|
|
|
default: false
|
|
|
},
|
|
|
group: [Number, String]
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
...
|
...
|
@@ -32,6 +40,30 @@ export default { |
|
|
computed: {
|
|
|
imageSrc() {
|
|
|
return this.imgSrc || this.defaultSrc;
|
|
|
},
|
|
|
identityClass() {
|
|
|
let className = '';
|
|
|
|
|
|
switch (+this.group) {
|
|
|
case 1: // 普通马甲
|
|
|
case 2: // 编辑
|
|
|
case 4: // 社区大号
|
|
|
case 6: // 评论马甲
|
|
|
break;
|
|
|
case 3: // 官方号
|
|
|
className = 'identity-gf';
|
|
|
break;
|
|
|
case 5: // 品牌号
|
|
|
className = 'identity-pp';
|
|
|
break;
|
|
|
case 7: // 授权KOL
|
|
|
className = 'identity-king';
|
|
|
break;
|
|
|
default:
|
|
|
break;
|
|
|
}
|
|
|
|
|
|
return `${className}${this.small ? '-small' : ''}`;
|
|
|
}
|
|
|
},
|
|
|
watch: {
|
...
|
...
|
@@ -47,9 +79,49 @@ export default { |
|
|
};
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
<style lang="css" scoped>
|
|
|
.avatar-wrap {
|
|
|
display: inline-block;
|
|
|
position: relative;
|
|
|
|
|
|
> img {
|
|
|
width: 100%;
|
|
|
height: 100%;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
.img-avatar {
|
|
|
border-radius: 50%;
|
|
|
overflow: hidden;
|
|
|
}
|
|
|
|
|
|
.identity-icon {
|
|
|
width: 45%;
|
|
|
height: 45%;
|
|
|
position: absolute;
|
|
|
right: -6%;
|
|
|
bottom: -6%;
|
|
|
background-size: 100%;
|
|
|
}
|
|
|
|
|
|
.identity-gf {
|
|
|
background-image: url('~statics/image/userpage/GF-big-ic.png');
|
|
|
}
|
|
|
|
|
|
.identity-gf-small {
|
|
|
background-image: url('~statics/image/userpage/GF-small-ic.png');
|
|
|
}
|
|
|
|
|
|
.identity-king,
|
|
|
.identity-king-small {
|
|
|
background-image: url('~statics/image/userpage/KING-ic.png');
|
|
|
}
|
|
|
|
|
|
.identity-pp {
|
|
|
background-image: url('~statics/image/userpage/PP-big-ic.png');
|
|
|
}
|
|
|
|
|
|
.identity-pp-small {
|
|
|
background-image: url('~statics/image/userpage/PP-small-ic.png');
|
|
|
}
|
|
|
</style> |
...
|
...
|
|