...
|
...
|
@@ -6,6 +6,13 @@ |
|
|
<view class="left">
|
|
|
<!--<image src="../../../images/avatar@2x.png" class="user-avatar"></image>-->
|
|
|
<image src="{{detail.userPic}}" class="user-avatar"></image>
|
|
|
<block wx:if="{{detail.userType ===1}}"><!--userType 1注册用户,2后台用户(金v)-->
|
|
|
<image src="{{detail.sex === 1?'../../../images/man.png':'../../../images/women.png'}}"
|
|
|
class="sex-icon"></image>
|
|
|
</block>
|
|
|
<block wx:if="{{detail.userType ===2}}">
|
|
|
<text class="iconfont icon-vip sex-icon"></text>
|
|
|
</block>
|
|
|
<text>{{detail.userName}}</text>
|
|
|
</view>
|
|
|
<view class="right">
|
...
|
...
|
@@ -103,6 +110,13 @@ |
|
|
<view class="people" wx:for="{{join_people}}" wx:key="index">
|
|
|
<view class="bg">
|
|
|
<image src="{{item.pic}}" class="people-img"></image>
|
|
|
<block wx:if="{{item.userType ===1}}"><!--userType 1注册用户,2后台用户(金v)-->
|
|
|
<image src="{{item.sex === 1?'../../../images/man.png':'../../../images/women.png'}}"
|
|
|
class="sex-icon"></image>
|
|
|
</block>
|
|
|
<block wx:if="{{item.userType ===2}}">
|
|
|
<text class="iconfont icon-vip sex-icon"></text>
|
|
|
</block>
|
|
|
</view>
|
|
|
<view class="people-num">
|
|
|
<view class="name">{{item.name}}</view>
|
...
|
...
|
@@ -150,6 +164,13 @@ |
|
|
<view class="top-left">
|
|
|
<!--<image src="../../../images/avatar@2x.png" class="release-img"></image>-->
|
|
|
<image src="{{comment.userPic}}" class="release-img"></image>
|
|
|
<block wx:if="{{comment.userType ===1}}"><!--userType 1注册用户,2后台用户(金v)-->
|
|
|
<image src="{{comment.sex === 1?'../../../images/man.png':'../../../images/women.png'}}"
|
|
|
class="sex-icon"></image>
|
|
|
</block>
|
|
|
<block wx:if="{{comment.userType ===2}}">
|
|
|
<text class="iconfont icon-vip sex-icon"></text>
|
|
|
</block>
|
|
|
<text>{{comment.userName}} {{comment.create_time}}</text>
|
|
|
</view>
|
|
|
<view class="top-right" bindtap="clickZan" data-id="{{comment.id}}" data-index="{{index}}">
|
...
|
...
|
|