UI优化
This commit is contained in:
@@ -187,18 +187,18 @@ const comingSoon = () => {
|
||||
<view>
|
||||
<view>
|
||||
<text>段位</text>
|
||||
<text>{{ user.scores ? getLvlName(user.scores) : "-" }}</text>
|
||||
<text>{{ user.scores ? getLvlName(user.scores) : "暂无" }}</text>
|
||||
</view>
|
||||
<view>
|
||||
<text>赛季平均环数</text>
|
||||
<text>{{ user.avg_ring ? user.avg_ring + "环" : "-" }}</text>
|
||||
<text>{{ user.avg_ring ? user.avg_ring + "环" : "暂无" }}</text>
|
||||
</view>
|
||||
<view>
|
||||
<text>赛季胜率</text>
|
||||
<text>{{
|
||||
user.avg_win
|
||||
? Number((user.avg_win * 100).toFixed(2)) + "%"
|
||||
: "-"
|
||||
: "暂无"
|
||||
}}</text>
|
||||
</view>
|
||||
</view>
|
||||
@@ -367,7 +367,7 @@ const comingSoon = () => {
|
||||
height: 82rpx;
|
||||
border-radius: 50%;
|
||||
margin-right: -10px;
|
||||
border: 1px solid #000;
|
||||
border: 1px solid #312F35;
|
||||
position: relative;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user