pingjia.wxml 645 字节
<view class="commentlist">
  <view class="commentitem" wx:for="{{pinglist}}" wx:key=''>
    <view class="commentleft">
      <image src="{{item.avatar}}"></image>
    </view>

    <view class="commentright">
      <view class="rightname">{{item.user_nickname}}</view>
      <view class="rightdate">2019年11月5日</view>
      <view class="righttext">{{item.content}}</view>
    </view>
  </view>




</view>
<view class="pingjiabottom">
  <view class="pbleft">
    <input placeholder='输入评论的内容' placeholder-class='enterping' bindinput="entertext"/>
  </view>

  <view class="pbright" bindtap="publishcomment">发送</view>
</view>