#### 1. 前言 --- 調(diào)起客服會話相關屬性參考官網(wǎng)文檔:[https://developers.weixin.qq.com/miniprogram/dev/component/button.html](https://developers.weixin.qq.com/miniprogram/dev/component/button.html) #### 2. 使用示例 --- **show-message-card** 是否顯示會話內(nèi)消息卡片,設置此參數(shù)為 true,用戶進入客服會話會在右下角顯示"可能要發(fā)送的小程序"提示,用戶點擊后可以快速發(fā)送小程序消息,open-type="contact"時有效 示例 ```html <button type="primary" open-type="contact" show-message-card>調(diào)起客服會話</button> ``` **send-message-title** 會話內(nèi)消息卡片標題,`open-type="contact"` 時有效,默認沒有標題 ```html <button type="primary" open-type="contact" show-message-card send-message-title="獲取二維碼">調(diào)起客服會話</button> ``` **send-message-img** 會話內(nèi)消息卡片圖片,open-type="contact"時有效,省略時默認為當前頁面圖片 ```html <button type="primary" open-type="contact" show-message-card send-message-img="圖片URL地址">調(diào)起客服會話</button> ```