inputbar.wxml 1.9 KB

123456789101112131415161718192021222324252627282930
  1. <!--comps/inputbar/inputbar.wxml-->
  2. <view class="room_bar">
  3. <!-- <chat-suit-emoji id="chat-suit-emoji" bind:newEmojiStr="emojiAction"></chat-suit-emoji> -->
  4. <chat-suit-main id="chat-suit-main" username="{{ username }}" chatType="{{ chatType }}"></chat-suit-main>
  5. <chat-suit-image id="chat-suit-image" username="{{ username }}" chatType="{{ chatType }}"></chat-suit-image>
  6. <!-- <chat-suit-location id="chat-suit-location" username="{{ username }}"></chat-suit-location> -->
  7. <!-- <chat-suit-video id="chat-suit-video" username="{{ username }}" chatType="{{ chatType }}"></chat-suit-video> -->
  8. <!-- <chat-suit-ptopcall id="chat-suit-ptopcall" chatType="{{ chatType }}" bindmakeAudioCall="onMakeAudioCall" bindmakeVideoCall="onMakeVideoCall"></chat-suit-ptopcall> -->
  9. <view class="other_func {{isIPX? 'other_func_X': ''}}">
  10. <!-- <view class="open_emoji" bind:tap="openEmoji">
  11. <image src="../../../images/Emoji.png"/>
  12. </view> -->
  13. <!-- <view class="v-record" bind:tap="toggleRecordModal">
  14. <image class="icon-record" src="{{ recordStatus != RecordStatus.HIDE ? '../../../images/iconAudioActive@2x.png' : '../../../images/voice.png' }}" style="width:16px; height: 24px" />
  15. </view> -->
  16. <!-- <view class="send_image" bind:tap="sendVideo">
  17. <image src="../../../images/video_gray@2x.png" style="height:18px;" />
  18. </view> -->
  19. <!-- <view class="open_camera" bind:tap="openCamera">
  20. <image src="../../../images/camora.png" style="width:24px; height: 18px" />
  21. </view> -->
  22. <view class="send_image" bind:tap="sendImage">
  23. <image src="../../../images/pic.png" style="height:22px; width: 22px" />
  24. </view>
  25. <!-- <view class="v-record" bind:tap="callVideo">
  26. <image src="../../../images/call2x.png" style="height:24px; width: 15px" />
  27. </view> -->
  28. </view>
  29. </view>