12345678910111213141516171819202122232425262728 |
- <home-frame bind:toPath="toPath">
- <view class="main">
- <view class="one">
- <input class="input" type="text" bindconfirm="toSearch" confirm-type="search" placeholder-style=' text-align: center;' placeholder="搜索" />
- </view>
- <view class="two">
- <scroll-view class="scroll-view" scroll-y="true" bindscrolltolower="toLower" bindscroll="toScroll">
- <view class="list" wx:for="{{list}}" wx:key="index" wx:for-item="item" data-item="{{item}}" bindtap="toView">
- <view class="list_1">
- <view class="name textOver"> {{item.name||"暂无比赛名称"}} </view>
- <view class="color{{item.status}}"> {{item.status_name||'暂无状态'}} </view>
- </view>
- <view class="other">
- <view class="other_1">
- 开始时间:{{item.start_time||'暂无开始时间'}}
- </view>
- <view class="other_1">
- 结束时间:{{item.end_time||'暂无结束时间'}}
- </view>
- <view class="other_1 textOver">
- 比赛地点:{{item.address||'暂无比赛地点'}}
- </view>
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
- </home-frame>
|