| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <view class="player">
- <view class="name">{{datas.today_record.username}} <text>选手</text>
- <view style="width:140rpx;" wx:if='{{is_follow}}' data-action='cancel' bindtap="followPlayer">取消关注</view>
- <view wx:else bindtap="followPlayer">+关注</view></view>
- <view class="infos">
- <view class="info">风格:<label class="tag">短线</label><label class="tag">重仓</label></view>
- <view class="info">
- 排名: <view>{{datas.today_record.group_rank}}/54
- ({{datas.today_record.match_group_name}})</view>
- </view>
- <view class="info">
- 胜率: <view>80%(最大回撤 <text class='down'>-8%</text>)</view>
- </view>
- <view class="info">
- 日期: <view>{{datas.today_record.stock_date}}</view>
- </view>
- <view class="info">
- 资产:
- <view><label>{{datas.today_record.today_fund}}w</label>
- (今日收益
- <text class="{{datas.today_record.today_income[0]=='-' ?'down':'up'}}">{{datas.today_record.today_income}}</text>
- <text style="color:#F5F5F5;"> | </text>
- 总收益
- <text class="{{datas.today_record.total_income[0]=='-' ?'down':'up'}}">{{datas.today_record.total_income}}</text>
- )</view>
- </view>
- <view class="bottom">
- 今日持仓 <text>120.3W</text>
- 仓位 <text>80%</text>
- </view>
- </view>
- </view>
- <view class="page_top">
- <view wx:if='{{datas.today_record.today_stock.length>0}}' class="container" style="height:400rpx;">
- <ec-canvas id="mychart-dom-pie" canvas-id="mychart-pie" ec="{{ ec1 }}"></ec-canvas>
- </view>
- <!-- <view class="legend">
- <view>久盛电气 80w</view>
- <view>久盛电气 80w</view>
- <view>久盛电气 80w</view>
- </view> -->
- </view>
- <view class="imgs">
- <view class="title">交割单</view>
- <image wx:for='{{datas.today_record.today_stock_img}}' wx:for-item='i' bindtap="preview" data-src='{{i}}' data-urls='{{datas.today_record.today_stock_img}}'
- class="img" src="{{i}}"></image>
- </view>
- <view class="content" wx:if='{{datas.today_record.experience}}'>
- <view class="title">操盘总结</view>
- {{datas.today_record.experience}}
- </view>
- <view class="content" wx:if='{{datas.today_record.wanzhu_comment}}'>
- <view class="title">顽主点评</view>
- {{datas.today_record.wanzhu_comment}}
- </view>
- <view class="content">
- <view class="title">收益曲线</view>
- <view class="container" wx:if='{{datas.records.length>0}}'>
- <ec-canvas ec="{{ ec }}">
- </ec-canvas>
- </view>
- </view>
- <view class="days_stock">
- <view class="title">每日持股
- <navigator url="../day/day?id={{id}}&player_id={{player_id}}">
- 查看更多 <image mode="widthFix" src="../../images/right_icon.png"></image>
- </navigator>
- </view>
- <view class="stock" wx:for='{{stockList}}' wx:if="{{index<3}}">
- <navigator url="../record/record?id={{item.id}}">
- <view class="info">
- <view>{{item.stock_date}}(收益 <text class="{{item.today_income[0]=='-' ?'down':'up'}}">{{item.today_income}}</text>)</view>
- </view>
- <view class="info">
- 资产: <view><label>{{item.today_fund}}w</label> (收益 <text class="{{item.total_income[0]=='-' ?'down':'up'}}">{{item.total_income}}</text>)</view>
- </view>
- <view class="info">持仓: <view>
- <block wx:for='{{item.today_stock}}' wx:for-item='i'>
- {{i.name}}({{i.fund}}w)
- </block>
- </view></view>
- </navigator>
- <view class="imgs">
- <image wx:for='{{item.today_stock_img}}' wx:for-item='i' bindtap="preview" data-src='{{i}}' data-urls='{{item.today_stock_img}}'
- class="img" src="{{i}}"></image>
- </view>
- </view>
- </view>
|