commentPost.wxml 865 B

12345678910111213141516171819202122232425262728
  1. <view class="container">
  2. <view class="post-comment">
  3. <textarea class="title" focus="true" maxlength="60" placeholder="标题,品牌品类都是买家喜欢搜索的" />
  4. <view class="input-box">
  5. <textarea class="content" focus="true" bindinput="bindInpuntValue" maxlength="800" placeholder="描述一下宝贝的转手原因,入手渠道和使用感受" />
  6. <text class="count">{{800 - content.length}}</text>
  7. </view>
  8. <view class='post-img'>
  9. </view>
  10. </view>
  11. <view class="detail">
  12. <textarea class="price" focus="true" maxlength="8" placeholder="¥0.00" />
  13. <textarea class="price" focus="true" maxlength="8" placeholder="¥0.00" />
  14. <textarea class="price" focus="true" maxlength="3" placeholder="¥0.00" />
  15. </view>
  16. <view class="bottom-btn">
  17. <button class="r">确认发布</button>
  18. </view>
  19. </view>