微信小程序配置企业微信的在线客服

配置企业微信后台

微信小程序配置企业微信的在线客服_第1张图片

代码实现

<button @tap="openCustomerServiceChat">打开企业微信客服button>
methods: {
  openCustomerServiceChat(){
    wx.openCustomerServiceChat({
	  extInfo: {
		url: '你刚才的客服地址'
		},
		corpId: '企业微信的id',
		showMessageCard: true,
	});
  }
}      

微信小程序配置企业微信的在线客服_第2张图片

你可能感兴趣的:(玩转移动端:uni系列,微信小程序,企业微信,小程序)