message.wxml 1.0 KB

123456789101112131415161718192021222324
  1. <view id="messageScroll">
  2. <view class="subscribe" wx:if="{{!subscribe}}">
  3. <image src="../../images/lb.png" mode="widthFix" class="notice"></image>
  4. <text class="noticeMsg" bindtap="subscribe">点我开通即时消息提醒!</text>
  5. </view>
  6. <view class="list" wx:for="{{list}}" >
  7. <view class="me" wx:if='{{item.user_id}}'>
  8. <image src="{{item.user_avatar}}" ></image>
  9. <view class="content">{{item.content}}</view>
  10. </view>
  11. <view class="wz" wx:else>
  12. <image src="../../images/wz.jpg" ></image>
  13. <view>
  14. <text class="name">顽主</text>
  15. <view class="content">{{item.reply_content}}</view>
  16. </view>
  17. </view>
  18. </view>
  19. <view class="post">
  20. <input confirm-type='send' bindconfirm='post' value="{{comment}}" placeholder-style="color:#999" maxlength="500" bindinput="inputchange" type="text" placeholder="我要咨询"/>
  21. <button bindtap="post">提交</button>
  22. </view>
  23. <view style="clear: both;"></view>
  24. </view>