UI优化
This commit is contained in:
@@ -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