gameDetail.wxml 1.2 KB

123456789101112131415161718192021
  1. <view class="part detail">
  2. <view><text>参赛名称</text>{{datas.match.name}}</view>
  3. <view><text>参赛日期</text>{{datas.match.start_time}} 至 {{datas.match.end_time}}</view>
  4. <view><text>参赛名</text>{{datas.today_record.username}}</view>
  5. <view><text>参赛组</text>{{datas.match.groups}}</view>
  6. </view>
  7. <view class="part info" wx:if='{{datas.today_record}}'>
  8. <view> <text>{{datas.today_record.group_rank}}</text>排名 </view>
  9. <!-- <view style="width:30%;"> <text>{{datas.today_record.group_rank}}</text>小组排名 </view> -->
  10. <view> <text class="{{datas.today_record.total_income[0]=='-'?'down':'up'}}">{{datas.today_record.total_income}}</text>盈亏 </view>
  11. <view> <text>{{datas.today_record.init_fund}}</text>初始资产(万) </view>
  12. <view> <text >{{datas.today_record.today_fund}}</text>今日资产(万) </view>
  13. </view>
  14. <view class="part">
  15. <view class="container" wx:if='{{datas.records.length>0}}'>
  16. <ec-canvas id="mychart-dom-line" canvas-id="mychart-line" ec="{{ ec }}">
  17. </ec-canvas>
  18. </view>
  19. <navigator url="../day/day?id={{id}}&player_id={{datas.today_record.player_id}}" class="per">每日持股查看</navigator>
  20. </view>