commentPost.wxml 559 B

123456789101112131415
  1. <view class="container">
  2. <auth bindlogin="onShow" />
  3. <lip-sync />
  4. <view class="post-comment">
  5. <view class="input-box">
  6. <textarea class="content" focus="true" bindinput="bindInpuntValue" maxlength="140" placeholder="留言经过筛选后,对所有人可见" />
  7. <text class="count">{{140 - content.length}}</text>
  8. </view>
  9. <view class="btns">
  10. <view class="close" bindtap="onClose">取消</view>
  11. <view class="post" bindtap="onPost">发表</view>
  12. </view>
  13. </view>
  14. </view>