input_content.wxml 1.0 KB

123456789101112131415161718192021222324252627
  1. <!--pages/Input_content/input_content.wxml-->
  2. <view class="input-content">
  3. <view class="head">
  4. <<<<<<< HEAD
  5. <text bindtap="cancel">取消</text>
  6. =======
  7. <text>取消</text>
  8. >>>>>>> d311ba85855d9833139d43ef0f7038e08d5d9599
  9. <text bindtap="send">发送</text>
  10. </view>
  11. <view class="write">
  12. <input placeholder="写点什么..." bindinput="bindKeyInput" type="text" />
  13. <<<<<<< HEAD
  14. <view wx:if="{{type == 2}}">
  15. <text bindtap="uploading">上传图片</text>
  16. <block wx:for="{{tempFilePath}}" wx:key="{{index}}">
  17. <image src="{{item }}" bindtap="listenerButtonPreviewImage" data-index="{{index}}" style="width: 100%;"/>
  18. </block>
  19. </view>
  20. =======
  21. <text bindtap="uploading">上传图片</text>
  22. <block wx:for="{{tempFilePath}}" wx:key="{{index}}">
  23. <image src="{{item }}" bindtap="listenerButtonPreviewImage" data-index="{{index}}" style="width: 100%;"/>
  24. </block>
  25. >>>>>>> d311ba85855d9833139d43ef0f7038e08d5d9599
  26. </view>
  27. </view>