index.wxml 1.4 KB

12345678910111213141516171819202122232425262728
  1. <home-frame bind:toPath="toPath">
  2. <view class="main">
  3. <view class="one">
  4. <input class="input" type="text" bindconfirm="toSearch" confirm-type="search" placeholder-style=' text-align: center;' placeholder="搜索" />
  5. </view>
  6. <view class="two">
  7. <scroll-view class="scroll-view" scroll-y="true" bindscrolltolower="toLower" bindscroll="toScroll">
  8. <view class="list" wx:for="{{list}}" wx:key="index" wx:for-item="item" data-item="{{item}}" bindtap="toView">
  9. <view class="list_1">
  10. <view class="name textOver"> {{item.name||"暂无比赛名称"}} </view>
  11. <view class="color{{item.status}}"> {{item.status_name||'暂无状态'}} </view>
  12. </view>
  13. <view class="other">
  14. <view class="other_1">
  15. 开始时间:{{item.start_time||'暂无开始时间'}}
  16. </view>
  17. <view class="other_1">
  18. 结束时间:{{item.end_time||'暂无结束时间'}}
  19. </view>
  20. <view class="other_1 textOver">
  21. 比赛地点:{{item.address||'暂无比赛地点'}}
  22. </view>
  23. </view>
  24. </view>
  25. </scroll-view>
  26. </view>
  27. </view>
  28. </home-frame>