This commit is contained in:
zhaofang
2022-11-03 11:41:49 +08:00
parent 89c44e2576
commit 437673ae22

View File

@@ -22,11 +22,12 @@
<div style="padding-top:10px;"> <div style="padding-top:10px;">
<p class="ach-title">{{self?'我':'TA'}}的成就</p> <p class="ach-title">{{self?'我':'TA'}}的成就</p>
<ul class="ach-ul"> <ul class="ach-ul">
<li class="ach-box" v-for="ach in medalList" :key="ach.id" @click="jumach(ach)"> <li v-for="ach in medalList" :key="ach.id" @click="jumach(ach)">
<!-- <img src="/images/medal.png" alt=""> --> <div class="ach-box" v-if="ach.medalId != 5">
<medal-img style="width:52px;height:58px" :item="ach"></medal-img> <medal-img style="width:52px;height:58px" :item="ach"></medal-img>
<p>{{ach.medalName}}</p> <p>{{ach.medalName}}</p>
<p>LV.{{ach.medalLevel}}</p> <p>LV.{{ach.medalLevel}}</p>
</div>
</li> </li>
</ul> </ul>
</div> </div>