input_content.wxml 665 B

12345678910111213141516
  1. <!--pages/Input_content/input_content.wxml-->
  2. <view class="input-content">
  3. <view class="head">
  4. <text bindtap="cancel">取消</text>
  5. <text bindtap="send">发送</text>
  6. </view>
  7. <view class="write">
  8. <input placeholder="写点什么..." bindinput="bindKeyInput" type="text" />
  9. <view wx:if="{{type == 2}}">
  10. <image src="../image/add.png" class="add" bindtap="uploading"/>
  11. <block wx:for="{{tempFilePath}}" wx:key="{{index}}">
  12. <image src="{{item }}" bindtap="listenerButtonPreviewImage" data-index="{{index}}" style="width: 100%;"/>
  13. </block>
  14. </view>
  15. </view>
  16. </view>