|
@@ -8,7 +8,8 @@
|
|
|
<text class="likeBtn">{{isLike ? '已' : ''}}点赞</text>
|
|
|
</view>
|
|
|
<view class="follow" wx:if="{{authorUid !== myUid}}">
|
|
|
- <text class="followBtn" bindtap="follow" >{{isFans ? '已' : ''}}关注</text>
|
|
|
+ <image src="{{isFans? '../../../static/image/fully_heart.png' : '../../../static/image/empty_heart.png'}}" />
|
|
|
+ <text class="followBtn" bindtap="follow">{{isFans ? '已' : ''}}关注</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="userSection">
|
|
@@ -41,9 +42,9 @@
|
|
|
</view>
|
|
|
<view class="btnWrapper">
|
|
|
<image class="commentBtn" src="../../../static/image/comment.png" bindtap="setSBId" data-id="{{item.id}}" data-index="{{index}}" />
|
|
|
- <text class="commentText" bindtap="setSBId" data-id="{{item.id}}" data-index="{{index}}" >评论</text>
|
|
|
+ <text class="commentText" bindtap="setSBId" data-id="{{item.id}}" data-index="{{index}}">评论</text>
|
|
|
<image class="likeBtn" src="../../../static/image/like.png" data-index="{{index}}" data-likes="{{item.likes}}" data-id="{{item.id}}" bindtap="likeCommend" />
|
|
|
- <text class="likeText" data-index="{{index}}" data-likes="{{item.likes}}" data-id="{{item.id}}" bindtap="likeCommend">{{item.likes}}</text>
|
|
|
+ <text class="likeText" data-index="{{index}}" data-likes="{{item.likes}}" data-id="{{item.id}}" bindtap="likeCommend">{{item.likes}}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -71,7 +72,7 @@
|
|
|
<shareDialog id="share-dialog" shareType='works' shareId="{{id}}" />
|
|
|
<!-- 评论框 -->
|
|
|
<view class="replySection" wx:if="{{replyModal}}">
|
|
|
- <input bindblur="bindTextAreaBlur" bindconfirm="replySB" confirm-type="send" placeholder="回复" bindinput="inputSBValue" auto-focus auto-height />
|
|
|
+ <input bindblur="bindTextAreaBlur" bindconfirm="replySB" confirm-type="send" placeholder="回复" bindinput="inputSBValue" auto-focus auto-height />
|
|
|
</view>
|
|
|
<!-- 奖励弹窗 -->
|
|
|
<cover-view class="modalWrapper" wx:if="{{ifReward}}">
|
|
@@ -94,5 +95,4 @@
|
|
|
</cover-view>
|
|
|
<cover-image class="quitBtn" bindtap="quitReward" src="../../../static/groupImg/cha.png" />
|
|
|
</cover-view>
|
|
|
-
|
|
|
</view>
|