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.

24 lines
744 B

<view class="navigation">
<view style="height:{{statusBarHeight}}px"></view>
<view class="navigation-bar">
<view class="navigation-left">
<icon class="search" type="search" size="26" color="white" bindtap="enterSearch"/>
<text class="title">我的</text>
</view>
<view class="navbar" bindtap="switchNav">
<view class="navitem {{current==index?'active':''}}" wx:for="{{list}}" data-current="{{index}}">
{{item.text}}
</view>
</view>
</view>
</view>
<swiper class="body" current="{{current}}" bindchange="switchTab" circular="1">
<swiper-item>
<my-course wx:if="{{show[0]}}"/>
</swiper-item>
<swiper-item>
<my-shixun wx:if="{{show[1]}}"/>
</swiper-item>
</swiper>
<add-tips/>