UI优化
This commit is contained in:
@@ -212,7 +212,6 @@ const backToHome = () => {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
font-size: 14px;
|
||||
transform: translateX(10px) translateY(-10px);
|
||||
}
|
||||
.scan-tips > text {
|
||||
margin-bottom: 2px;
|
||||
|
||||
@@ -136,15 +136,15 @@ const toRankListPage = () => {
|
||||
</view>
|
||||
<view>
|
||||
<text>赛季平均环数</text>
|
||||
<text :style="{ color: '#FFD947' }"
|
||||
>{{ user.avg_ring || "-" }}环</text
|
||||
>
|
||||
<text :style="{ color: '#FFD947' }">{{
|
||||
user.avg_ring ? user.avg_ring + "环" : "-"
|
||||
}}</text>
|
||||
</view>
|
||||
<view>
|
||||
<text>赛季胜率</text>
|
||||
<text :style="{ color: '#FF507E' }"
|
||||
>{{ user.avg_win || "-" }}%</text
|
||||
>
|
||||
<text :style="{ color: '#FF507E' }">{{
|
||||
user.avg_win ? user.avg_win + "%" : "-"
|
||||
}}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="rank-type">
|
||||
|
||||
Reference in New Issue
Block a user