12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <mobile-main frameStyle="{{frameStyle}}" bind:back="back">
- <view slot="info" class="main" style="height:{{infoHeight}}px;">
- <view class="one">
- <image class="image" src="{{bg_img}}"></image>
- <view class="one_1">
- <view class="name textOver"><text>{{matchInfo.name}}</text></view>
- <view class="other">
- <view class="otherInfo"><text>比赛状态:</text><text class="color{{matchInfo.status}}">{{matchInfo.status_name}}</text></view>
- <view class="otherInfo"><text>比赛时间:</text><text>{{matchInfo.match_time}}</text></view>
- <view class="otherInfo"><text>比赛地点:</text><text>{{matchInfo.address}}</text></view>
- </view>
- </view>
- </view>
- <view class="two">
- <e-tabs tabs="{{tabs}}" bind:tabsChange="tabsChange"></e-tabs>
- <view class="two_1">
- <view wx:if="{{tabs.active=='a'}}" class="a">
- 赛制信息
- </view>
- <view wx:if="{{tabs.active=='b'}}" class="b">
- <view class="list" wx:for="{{matchteamList}}" wx:key="item">
- <image src="{{item.logo[0].url}}"></image>
- <view class="name textOver">{{item.team_name}}</view>
- <view class="num">共{{item.members.length}}人</view>
- </view>
- </view>
- <view wx:if="{{tabs.active=='c'}}" class="c">
- <view class="list" wx:for="{{scheduleList}}" wx:key="item" bindtap="toSchedule" data-id="{{item._id}}">
- <view class="list_1">
- <image class="image" src="{{bg_img1}}"></image>
- <view class="txt">
- <text>{{item.status=='0'?'未开始':item.status=='1'?'开始':'已结束'}}</text>
- <text>{{item.match_time}}</text>
- </view>
- </view>
- <view class="list_2">
- <view class="list_2one">
- <image src="{{item.red_logo[0].url}}"></image>
- <text class="textOver">{{item.red_name}}</text>
- </view>
- <view class="list_2two">
- <text>{{item.red_branch||0}}</text>
- <text>:</text>
- <text>{{item.blue_branch||0}}</text>
- </view>
- <view class="list_2one">
- <text class="textOver">{{item.blue_name||'暂无'}}</text>
- <image src="{{item.blue_logo[0].url}}"></image>
- </view>
- </view>
- </view>
- </view>
- <view wx:if="{{tabs.active=='d'}}" class="d">
- <view class="ranking">
- <view>排名</view>
- <view>战队</view>
- <view>胜负</view>
- <view>积分</view>
- </view>
- <view class="ranking rankingList" wx:for="{{rankingList}}" wx:key="item">
- <view><text>{{item.pm}}</text></view>
- <view class="textOver">
- <image src="{{item.logo[0].url}}"></image>
- <text>{{item.team_name}}</text>
- </view>
- <view>
- <text>{{item.sheng}}</text>
- <text>/</text>
- <text>{{item.fu}}</text>
- </view>
- <view><text>{{item.jf}}</text></view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </mobile-main>
|