30 lines
1.0 KiB
Plaintext
30 lines
1.0 KiB
Plaintext
<view class="page">
|
|
<view class="head">
|
|
<view class="head-num">{{unlockedCount}}<text class="head-total"> / {{total}}</text></view>
|
|
<view class="head-sub">已解锁成就 · {{dogName}}</view>
|
|
</view>
|
|
|
|
<view wx:if="{{unlockedList.length}}" class="section">已解锁</view>
|
|
<view class="list">
|
|
<view wx:for="{{unlockedList}}" wx:key="key" class="card ach-row">
|
|
<view class="medal on">🏅</view>
|
|
<view class="ach-body">
|
|
<view class="ach-name">{{item.name}}</view>
|
|
<view class="ach-desc">{{item.desc}}</view>
|
|
</view>
|
|
<view class="ach-when">{{item.when}}</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view wx:if="{{lockedList.length}}" class="section">未解锁</view>
|
|
<view class="list">
|
|
<view wx:for="{{lockedList}}" wx:key="key" class="card ach-row locked">
|
|
<view class="medal">🔒</view>
|
|
<view class="ach-body">
|
|
<view class="ach-name">{{item.name}}</view>
|
|
<view class="ach-desc">{{item.desc}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|