<block wx:key="{{ id }}" class="msg-box" wx:for="{{ msgList }}">
	<block wx:if="{{ item }}">
		<view class="msg-box">
			<!--聊天消息 留言消息-->
			<chat-msg-box msg="{{ item }}" wx:if="{{ item.type===1 }}" imgUrls="{{ imgUrls }}" />
			<!--机器人消息-->
			<robot-msg msg="{{ item }}" wx:elif="{{ item.type===10000 }}" imgUrls="{{ imgUrls }}" />
			<!--控制消息-->
			<control-msg-box wx:if="{{ item.type===2 || item.type===4 }}" msg="{{ item }}" imgUrls="{{ imgUrls }}" />
		</view>
	</block>
</block>