chat-item.wxml 787 B

12345678910111213141516
  1. <import src="./time.wxml"/>
  2. <import src="./custom.wxml"/>
  3. <import src="./word.wxml"/>
  4. <template name="chat-item">
  5. <view style="width: 100%;display: flex;flex-direction: column;align-items: center">
  6. <block wx:if="{{item.type!=='custom'}}">
  7. <template is="chat-time" data="{{showTime:item.showTime,time:item.time}}"/>
  8. <template is="chat-word"
  9. data="{{length:length,index:index,headUrl:item.headUrl,isMy:item.isMy,showTime:item.showTime,time:item.time,content:item.content,type:item.type,voiceDuration:item.voiceDuration,isPlaying:item.isPlaying,sendStatus:item.sendStatus}}"/>
  10. </block>
  11. <block wx:else>
  12. <template is="chat-custom" data="{{content:item.content}}"/>
  13. </block>
  14. </view>
  15. </template>