|
@@ -3,8 +3,8 @@
|
|
|
<view class="name">
|
|
|
{{datas.today_record.username}}
|
|
|
<view class="fans">
|
|
|
- <text>2626</text>粉丝
|
|
|
- <text style="margin-left: 20rpx;">2626</text>关注
|
|
|
+ <text>{{fans}}</text>粉丝
|
|
|
+ <navigator url="../follow/follow" style="display: inline-block;"><text style="margin-left: 20rpx;">{{followers}}</text>关注</navigator>
|
|
|
</view>
|
|
|
</view>
|
|
|
<block wx:if='{{type!=1}}'>
|
|
@@ -14,17 +14,19 @@
|
|
|
<navigator class="follow" url="../style/style" wx:else>编辑</navigator>
|
|
|
</view>
|
|
|
<view class="style">
|
|
|
- <view wx:if='{{datas.today_record.style.length>0}}'>
|
|
|
- <text>风格</text><label wx:for='{{datas.today_record.style}}' class="tag">{{item}}</label>
|
|
|
+ <view wx:if='{{datas.today_record.style.length>0}}' style="padding-bottom: 0;">
|
|
|
+ <text>风格</text>
|
|
|
+ <view style="display: inline-block;width: 70%;vertical-align: top;"><label wx:for='{{datas.today_record.style}}' class="tag">{{item}}</label></view>
|
|
|
</view>
|
|
|
<view>
|
|
|
- <text>股龄</text>6年
|
|
|
+ <text>股龄</text>{{datas.stock_age}}年
|
|
|
</view>
|
|
|
- <view>
|
|
|
+ <!-- <view>
|
|
|
<text>城市</text>重庆
|
|
|
- </view>
|
|
|
+ </view> -->
|
|
|
<view>
|
|
|
- <text>跟踪股票</text>金刚玻璃、国机汽车、华夏银行
|
|
|
+ <text>跟踪股票</text>
|
|
|
+ <block wx:for="{{datas.stock_follow}}">{{item}}</block>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="style" style="margin: 0;">
|
|
@@ -105,20 +107,26 @@
|
|
|
<view class="info" wx:if='{{item.experience}}'>
|
|
|
今日反思:{{item.experience}}
|
|
|
</view>
|
|
|
- <!-- <view class="info" wx:if='{{item.wanzhu_comment}}'>
|
|
|
+ <view class="info" wx:if='{{item.wanzhu_comment}}'>
|
|
|
顽主点评:{{item.wanzhu_comment}}
|
|
|
- </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 class="comment">
|
|
|
+ <image mode="widthFix" src="../../images/msg.png"></image>
|
|
|
+ <text>{{item.comments_count}}</text>
|
|
|
+ <image mode="widthFix" src="../../images/zan.png"></image>
|
|
|
+ <text>{{item.zans_count}}</text>
|
|
|
+ </view>
|
|
|
</view>
|
|
|
- <!-- <view class="look_all">
|
|
|
+ <view class="look_all">
|
|
|
<navigator hover-class="none" url="../day/day?id={{id}}&player_id={{player_id}}">
|
|
|
查看全部
|
|
|
</navigator>
|
|
|
- </view> -->
|
|
|
+ </view>
|
|
|
</view>
|
|
|
|
|
|
<view wx:if="type==1" class="content" style="margin-top: 100rpx;"><view bindtap="logout" class="logout">退出登录</view></view>
|