123456789101112131415161718192021222324252627282930 |
- <!--comps/inputbar/inputbar.wxml-->
- <view class="room_bar">
- <!-- <chat-suit-emoji id="chat-suit-emoji" bind:newEmojiStr="emojiAction"></chat-suit-emoji> -->
- <chat-suit-main id="chat-suit-main" username="{{ username }}" chatType="{{ chatType }}"></chat-suit-main>
- <chat-suit-image id="chat-suit-image" username="{{ username }}" chatType="{{ chatType }}"></chat-suit-image>
- <!-- <chat-suit-location id="chat-suit-location" username="{{ username }}"></chat-suit-location> -->
- <!-- <chat-suit-video id="chat-suit-video" username="{{ username }}" chatType="{{ chatType }}"></chat-suit-video> -->
- <!-- <chat-suit-ptopcall id="chat-suit-ptopcall" chatType="{{ chatType }}" bindmakeAudioCall="onMakeAudioCall" bindmakeVideoCall="onMakeVideoCall"></chat-suit-ptopcall> -->
- <view class="other_func {{isIPX? 'other_func_X': ''}}">
- <!-- <view class="open_emoji" bind:tap="openEmoji">
- <image src="../../../images/Emoji.png"/>
- </view> -->
- <!-- <view class="v-record" bind:tap="toggleRecordModal">
- <image class="icon-record" src="{{ recordStatus != RecordStatus.HIDE ? '../../../images/iconAudioActive@2x.png' : '../../../images/voice.png' }}" style="width:16px; height: 24px" />
- </view> -->
- <!-- <view class="send_image" bind:tap="sendVideo">
- <image src="../../../images/video_gray@2x.png" style="height:18px;" />
- </view> -->
- <!-- <view class="open_camera" bind:tap="openCamera">
- <image src="../../../images/camora.png" style="width:24px; height: 18px" />
- </view> -->
- <view class="send_image" bind:tap="sendImage">
- <image src="../../../images/pic.png" style="height:22px; width: 22px" />
- </view>
- <!-- <view class="v-record" bind:tap="callVideo">
- <image src="../../../images/call2x.png" style="height:24px; width: 15px" />
- </view> -->
- </view>
- </view>
|