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

View File

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