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