Authored by huzhiming
Committed by shuaiguo

feat(用户图标): 为优质用户11添加icon标识

... ... @@ -59,6 +59,9 @@ export default {
case 7: // 授权KOL
className = 'identity-king';
break;
case 11: // 优质用户
className = 'identity-excellent';
break;
default:
break;
}
... ... @@ -124,4 +127,13 @@ export default {
.identity-pp-small {
background-image: url("~statics/image/userpage/PP-small-ic.png");
}
/* 优质用户 icon */
.identity-excellent {
background-image: url("~statics/image/userpage/DR-big-ic@3x.png");
}
.identity-excellent-small {
background-image: url("~statics/image/userpage/DR-small-ic@3x.png");
}
</style>
... ...
... ... @@ -261,6 +261,9 @@ export default {
case 7: // 授权KOL
className = 'identity-king';
break;
case 11: // 优质用户
className = 'identity-excellent';
break;
default:
break;
}
... ... @@ -980,6 +983,15 @@ export default {
background-image: url("~statics/image/userpage/PP-small-ic.png");
}
/* 优质用户 icon */
.identity-excellent {
background-image: url("~statics/image/userpage/DR-big-ic@3x.png");
}
.identity-excellent-small {
background-image: url("~statics/image/userpage/DR-small-ic@3x.png");
}
.author-section {
display: flex;
flex-direction: column;
... ...