stock.wxml 872 B

123456789101112131415161718
  1. <!--pages/stock/stock.wxml-->
  2. <image mode="withFix" src="{{info.img}}"></image>
  3. <view class="desc">{{info.desc}}</view>
  4. <view class="player" wx:for='{{info.list}}'>
  5. <view class="name">{{item.username}} <text>选手</text>
  6. <view>TOP <text>{{item.match_group}}</text></view></view>
  7. <view class="info">
  8. 资产:<view><label>{{item.today_fund}}w</label>(今日收益 <text class="{{item.today_income<0 ?'down':'up'}}">{{item.today_income}}%</text><text style="color:#F5F5F5;"> | </text>总收益<text class="{{item.total_income<0 ?'down':'up'}}">{{item.total_income}}%</text>)</view>
  9. </view>
  10. <view class="info">
  11. 持仓: <view>
  12. <block wx:for='{{item.today_stock}}' wx:for-item='i'>
  13. {{i.name}}({{i.fund}}w)
  14. </block>
  15. </view>
  16. </view>
  17. </view>