index.wxml 713 B

12345678910111213141516171819
  1. <mobile-main frameStyle="{{frameStyle}}" bind:back="back">
  2. <view slot="info" class="container main">
  3. <view class="zero one">
  4. <e-tabs tabs="{{tabs}}" bind:tabsChange="tabsChange"></e-tabs>
  5. <view wx:if="{{tabs.active=='a'}}" class="a">
  6. {{info.name}}
  7. </view>
  8. <view wx:elif="{{tabs.active=='b'}}" class="b">
  9. b
  10. </view>
  11. <view wx:elif="{{tabs.active=='c'}}" class="b">
  12. c
  13. </view>
  14. </view>
  15. <view class="zero two">
  16. <button type="primary" size="mini" bindtap="toSign" data-item="{{info}}">赛事报名</button>
  17. </view>
  18. </view>
  19. </mobile-main>