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