pushArticle.wxml 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. <!--pages/pushArticle/pushArticle.wxml-->
  2. <view class="input-view">
  3. <textarea value="{{content}}" placeholder="此刻,表达一下你的看法" bindinput="getbindinput"></textarea>
  4. </view>
  5. <view class="img-box">
  6. <view class="img-view" wx:for="{{imgList}}" wx:key="index">
  7. <image src="{{item}}"></image>
  8. <image src="/static/img/close5.png" bindtap="delFun" data-idx="{{index}}"></image>
  9. </view>
  10. <view hidden="{{imgList.length>=9}}" class="img-upload" bindtap="uploadImg">
  11. <image src="/static/img/addArticle.png"></image>
  12. </view>
  13. </view>
  14. <view class="tag-box" bindtap="addTags">
  15. <image src="/static/img/topic.png"></image>
  16. <text>添加标签</text>
  17. <text>与更多人分享</text>
  18. <image src="/static/img/arrow.png"></image>
  19. </view>
  20. <view class="tags-list">
  21. <text wx:for="{{selectedTagList}}" wx:key="index">#{{item.contTagName}}</text>
  22. </view>
  23. <!-- <view class="tag-box">
  24. <image src="/static/img/lock.png"></image>
  25. <text>匿名发布</text>
  26. <switch color="#FF5700" checked="{{switch1Checked}}" bindchange="switch1Change"/>
  27. </view> -->
  28. <view class="submit-view">
  29. <text bindtap="pushContent">发布</text>
  30. </view>