You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
781 B

<view class="my-playlists">
<view wx:if="{{loading}}" class="loading">
<text>加载中...</text>
</view>
<block wx:else>
<view class="playlists" wx:if="{{playlists.length > 0}}">
<view
class="playlist-item"
wx:for="{{playlists}}"
wx:key="id"
bindtap="goToPlaylist"
data-id="{{item.id}}"
>
<image class="playlist-cover" src="{{item.coverImgUrl}}" mode="aspectFill"/>
<view class="playlist-info">
<view class="playlist-name">{{item.name}}</view>
<view class="playlist-count">{{item.trackCount}}首</view>
</view>
</view>
</view>
<view wx:else class="empty">
<text>暂无歌单</text>
</view>
</block>
</view>
<!-- 播放器 -->
<player-bar />