12345678910111213141516171819202122232425262728293031323334353637 |
- <view class="part top">
- <image mode="widthFix" src="../images/bank.png"></image>
- <view class="rank"> <text>{{datas.group_rank?datas.group_rank:0}}</text>当前排名 </view>
- <view class='label'>
- 日期 <text>{{datas.stock_date}}</text>
- </view>
- <view class='label'>
- 分组 <text>{{datas.match_group}}</text>
- </view>
- </view>
- <view class="info">
- <view> <text>{{datas.init_fund}}w</text>初始资产 </view>
- <view> <text>{{datas.today_fund}}w</text>今日资产 </view>
- <view> <text class="{{datas.today_income<0?'down':'up'}}">{{datas.today_income}}</text>当日收益 </view>
- <view> <text class="{{datas.total_income<0?'down':'up'}}">{{datas.total_income}}</text>总收益 </view>
- </view>
- <view class="part">
- <text class="tag blue">昨日持股</text>
- <view class="list">
- <!-- <view wx:if='{{item.is_markt}}'>已开超市</view> -->
- <!-- <block wx:else> -->
- <view wx:for='{{datas.yesterday_stock}}' wx:for-item='stock' >
- {{stock.name}} <text wx:if='{{stock.fund}}'>{{stock.fund}}万</text></view>
- <!-- </block> -->
- </view>
- <text class="tag blue">今日持股</text>
- <view class="list">
- <!-- <view wx:if='{{item.is_markt}}'>已开超市</view> -->
- <!-- <block wx:else> -->
- <view wx:for='{{datas.today_stock}}' wx:for-item='stock' >
- {{stock.name}} <text wx:if='{{stock.fund}}'>{{stock.fund}}万</text></view>
- <!-- </block> -->
- </view>
- </view>
|