info.wxml 4.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <mobile-main frameStyle="{{frameStyle}}" bind:back="back">
  2. <view slot="info" class="main" style="height:{{infoHeight}}px;">
  3. <view class="one">
  4. <image class="image" src="{{bg_img}}"></image>
  5. <view class="one_1">
  6. <view class="name textOver"><text>{{matchInfo.name}}</text></view>
  7. <view class="other">
  8. <view class="otherInfo"><text>比赛状态:</text><text class="color{{matchInfo.status}}">{{matchInfo.status_name}}</text></view>
  9. <view class="otherInfo"><text>比赛时间:</text><text>{{matchInfo.match_time}}</text></view>
  10. <view class="otherInfo"><text>比赛地点:</text><text>{{matchInfo.address}}</text></view>
  11. </view>
  12. </view>
  13. </view>
  14. <view class="two">
  15. <e-tabs tabs="{{tabs}}" bind:tabsChange="tabsChange"></e-tabs>
  16. <view class="two_1">
  17. <view wx:if="{{tabs.active=='a'}}" class="a">
  18. 赛制信息
  19. </view>
  20. <view wx:if="{{tabs.active=='b'}}" class="b">
  21. <view class="list" wx:for="{{matchteamList}}" wx:key="item">
  22. <image src="{{item.logo[0].url}}"></image>
  23. <view class="name textOver">{{item.team_name}}</view>
  24. <view class="num">共{{item.members.length}}人</view>
  25. </view>
  26. </view>
  27. <view wx:if="{{tabs.active=='c'}}" class="c">
  28. <view class="list" wx:for="{{scheduleList}}" wx:key="item" bindtap="toSchedule" data-id="{{item._id}}">
  29. <view class="list_1">
  30. <image class="image" src="{{bg_img1}}"></image>
  31. <view class="txt">
  32. <text>{{item.status=='0'?'未开始':item.status=='1'?'开始':'已结束'}}</text>
  33. <text>{{item.match_time}}</text>
  34. </view>
  35. </view>
  36. <view class="list_2">
  37. <view class="list_2one">
  38. <image src="{{item.red_logo[0].url}}"></image>
  39. <text class="textOver">{{item.red_name}}</text>
  40. </view>
  41. <view class="list_2two">
  42. <text>{{item.red_branch||0}}</text>
  43. <text>:</text>
  44. <text>{{item.blue_branch||0}}</text>
  45. </view>
  46. <view class="list_2one">
  47. <text class="textOver">{{item.blue_name||'暂无'}}</text>
  48. <image src="{{item.blue_logo[0].url}}"></image>
  49. </view>
  50. </view>
  51. </view>
  52. </view>
  53. <view wx:if="{{tabs.active=='d'}}" class="d">
  54. <view class="ranking">
  55. <view>排名</view>
  56. <view>战队</view>
  57. <view>胜负</view>
  58. <view>积分</view>
  59. </view>
  60. <view class="ranking rankingList" wx:for="{{rankingList}}" wx:key="item">
  61. <view><text>{{item.pm}}</text></view>
  62. <view class="textOver">
  63. <image src="{{item.logo[0].url}}"></image>
  64. <text>{{item.team_name}}</text>
  65. </view>
  66. <view>
  67. <text>{{item.sheng}}</text>
  68. <text>/</text>
  69. <text>{{item.fu}}</text>
  70. </view>
  71. <view><text>{{item.jf}}</text></view>
  72. </view>
  73. </view>
  74. </view>
  75. </view>
  76. </view>
  77. </mobile-main>