commentPost.wxml 512 B

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