123456789101112131415161718192021222324252627 |
- <!--pages/Input_content/input_content.wxml-->
- <view class="input-content">
- <view class="head">
- <<<<<<< HEAD
- <text bindtap="cancel">取消</text>
- =======
- <text>取消</text>
- >>>>>>> d311ba85855d9833139d43ef0f7038e08d5d9599
- <text bindtap="send">发送</text>
- </view>
- <view class="write">
- <input placeholder="写点什么..." bindinput="bindKeyInput" type="text" />
- <<<<<<< HEAD
- <view wx:if="{{type == 2}}">
- <text bindtap="uploading">上传图片</text>
- <block wx:for="{{tempFilePath}}" wx:key="{{index}}">
- <image src="{{item }}" bindtap="listenerButtonPreviewImage" data-index="{{index}}" style="width: 100%;"/>
- </block>
- </view>
- =======
- <text bindtap="uploading">上传图片</text>
- <block wx:for="{{tempFilePath}}" wx:key="{{index}}">
- <image src="{{item }}" bindtap="listenerButtonPreviewImage" data-index="{{index}}" style="width: 100%;"/>
- </block>
- >>>>>>> d311ba85855d9833139d43ef0f7038e08d5d9599
- </view>
- </view>
|