目录
一、跳转到客服界面的时候实现发送相关产品链接
heml
<button class="submitButton freeSubmit" open-type="contact"
send-message-title="车辆详情"
send-message-path="{{'/SubPackages/sellingPages/pages/car-detail/car-detail?id='+car.id}}"
send-message-img="{{car.cover[0]}}"
show-message-card="true"
session-from="车辆详情">
在线咨询
</button>
1、open-type="contact"这里实现的是,点击这个按钮就会跳转到与客服对话的界面;
2、send-message-title="service.title":会话内消息卡片标题,open-type="contact"时有效;
3、send-message-path="service.path":会话内消息卡片点击跳转小程序路径,open-type="contact"时有效;
4、send-message-img="service.img":会话内消息卡片图片,open-type="contact"时有效;
5、show-message-card="true":是否显示会话内消息卡片,设置此参数为 true,用户进入客服会话会在右下角显示"可能要发送的小程序"提示,用户点击后可以快速发送小程序消息,open-type="contact"时有效,这个要设置为true才会在会话界面看到链接;
6、session-from="service.content":会话来源,open-type="contact"时有效;