|
@@ -32,7 +32,7 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
|
|
|
- <view class="rank_item" v-for="(item,index) in rankingList" :key='item.userId'>
|
|
|
+ <view class="rank_item" v-for="(item,index) in rankingList" :key='index'>
|
|
|
<view class="rank_item_name" style="width: 20%;">
|
|
|
<image class="icon" v-if="index==0" src="https://dm.static.elab-plus.com/yezhu/icon_first.png" mode=""></image>
|
|
|
<image class="icon" v-if="index==1" src="https://dm.static.elab-plus.com/yezhu/icon_twice.png" mode=""></image>
|
|
@@ -77,7 +77,7 @@
|
|
|
},
|
|
|
filters:{
|
|
|
nameFilter(val){
|
|
|
- return val.charAt(0)+"*"
|
|
|
+ return val.charAt(0)+("*".repeat(val.length-1))
|
|
|
}
|
|
|
},
|
|
|
components:{
|