Merge branch '20230606-高质量运营-个人排名显示不完整' into 'release_20230609'

6.9 高质量运营 个人排名显示不完整

See merge request eshop/fe_service_ebtp_frontend!267
This commit is contained in:
jl-zhoujl2
2023-06-09 14:13:42 +00:00
2 changed files with 9 additions and 5 deletions

View File

@ -617,7 +617,7 @@
.list-star {
position: absolute;
left: 14px;
left: 6px;
}
.list-block {
@ -629,7 +629,7 @@
}
.list-province {
width: 60px;
width: 44px;
}
.list-score {
@ -637,13 +637,17 @@
}
.list-person-score {
width: 16px;
width: 32px;
}
.list-name {
width: 60px;
}
.list-province-largh {
width: 70px;
}
.star1 {
background-image: url("~@/assets/highQuality/star1.png");
background-size: 100% 100%;
@ -651,7 +655,7 @@
height: 21px;
width: 20px;
position: absolute;
left: 8px;
left: 0;
top: 3px;
text-align: center;
line-height: 24px;

View File

@ -622,7 +622,7 @@ const Home: React.FC<{}> = () => {
<p key={item.id}>
<span className={`list-star star${item.scoreSort}`}>{item.scoreSort}</span>
<span className="list-block"></span>
<span className="list-province" title={item.province}>{item.province}</span>
<span className="list-province-largh" title={item.province}>{item.province}</span>
<span className="list-score">{item.score}</span>
</p>
))}