index.wxml 1.4 KB

123456789101112131415161718192021222324252627
  1. <mobile-main frameStyle="{{frameStyle}}" bind:back="back">
  2. <view slot="info" class="main" style="height:{{infoHeight}}px;">
  3. <view class="one">
  4. <view class="list" wx:for="{{list}}" wx:key="item">
  5. <view class="name textOver">{{item.name}}</view>
  6. <view class="other">
  7. <view class="otherInfo">
  8. <text>时间:</text>
  9. <text>{{item.single_time}}</text>
  10. </view>
  11. <view class="otherInfo">
  12. <text>地点:</text>
  13. <text>{{item.address}}</text>
  14. </view>
  15. <view class="otherInfo">
  16. <text>状态:</text>
  17. <text>{{item.status=='0'?'未开始':item.status=='1'?'报名中':item.status=='2'?'待比赛':item.status=='3'?'进行中':'已结束'}}</text>
  18. </view>
  19. </view>
  20. <view class="btn" wx:if="{{item.status=='0'||item.status=='1'||item.status=='2'}}">
  21. <button type="default" size="mini" bindtap="toCommon" data-id="{{item._id}}" data-route="edit">修改</button>
  22. <button type="warn" size="mini" bindtap="toCommon" data-id="{{item._id}}" data-route="layout">编排</button>
  23. </view>
  24. </view>
  25. </view>
  26. </view>
  27. </mobile-main>