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.

19 lines
627 B

6 months ago
<view style="background: #ccc; height: 100%; color: #000;">
playlist
<scroll-view class="content-playlist"scroll-y>
<view class="playlist"
</view-item"wx:for="{{playlist}}"wx:key="id" bindtap="change"data-index="{{index}}">
<image class="playlist-cover" src="{{item.coverImgUr}}"/>
<view class="playlist-infor">
<view class="playlist-info-title">{{item.title}}</view>
<view class="playlist-info-singer">{{item.singer}}</view>
</view>
<view class="playlist-controls">
<text wx:if="{{index==playIndex}}">正在播放</text>
</view>
<view>
</scroll-view>
change:function(e){
this class=setMusic(e.currentTarget.dataset.index)
}