<!--index.wxml--> <view> ?? ?<view class='tab'> ?? ??? ?<view class="tab-item {{tab==0?'active':''}}" ?bindtap='changeItem' data-item='0'>音乐推荐</view> ?? ??? ?<view class="tab-item {{tab==1?'active':''}}" bindtap='changeItem' data-item='1'>播放器</view> ?? ??? ?<view class="tab-item {{tab==2?'active':''}}" bindtap='changeItem' data-item='2'>播放列表</view> ?? ?</view> ?? ?<swiper current="{{index}}"> ?? ??? ?<swiper-item> ?? ??? ??? ?<include src='./info.wxml'></include> ?? ??? ?</swiper-item> ?? ??? ?<swiper-item > ?? ??? ??? ?<include src='./play.wxml'></include> ?? ??? ?</swiper-item> ? ? ? ? ?? ?? ??? ?<swiper-item> ?? ??? ??? ?<include src='./playlist.wxml'></include> ?? ??? ?</swiper-item> ?? ?</swiper> ?? ? ?? ? </view>
|