replyDetail.wxml 772 B

1234567891011121314151617181920
  1. <view class="commentArea">
  2. <view class='padding-bottom'>
  3. <view class="{{index === 0? class1 : classNormal}}" wx:for="{{comment}}" wx:key="{{index}}">
  4. <image class="avatar" src="{{item.avatar}}" />
  5. <view class="commentCore">
  6. <text class="nickName">{{item.name}}</text>
  7. <text class="time">{{item.time}}</text>
  8. <text class="gut">{{item.text}}</text>
  9. </view>
  10. </view>
  11. </view>
  12. <view class='reply-all'>
  13. 全部回复({{ count }})
  14. </view>
  15. <view class='reply-msg'>
  16. <input name='reply' class='reply-input' placeholder='回复@{{ comment[0].name }}' value='{{ replyInfo }}' bindinput='saveValue' confirm-type ="send">
  17. </input>
  18. <text class='reply-btn' bindtap='replyDone'>回复</text>
  19. </view>
  20. </view>