12345678910111213141516171819 |
- <mobile-main frameStyle="{{frameStyle}}" bind:back="back">
- <view slot="info" class="container main">
- <view class="zero one">
- <e-tabs tabs="{{tabs}}" bind:tabsChange="tabsChange"></e-tabs>
- <view wx:if="{{tabs.active=='a'}}" class="a">
- {{info.name}}
- </view>
- <view wx:elif="{{tabs.active=='b'}}" class="b">
- b
- </view>
- <view wx:elif="{{tabs.active=='c'}}" class="b">
- c
- </view>
- </view>
- <view class="zero two">
- <button type="primary" size="mini" bindtap="toSign" data-item="{{info}}">赛事报名</button>
- </view>
- </view>
- </mobile-main>
|