赞
踩
1)找到企业ID,登录 企业微信
企业微信https://work.weixin.qq.com/wework_admin/loginpage_wx
2)找到接入链接
功能-客服-微信客服微信公众平台,给个人、企业和组织提供业务服务与用户管理能力的全新服务平台。https://mp.weixin.qq.com/
- let d = {
- corpId: 'ww931你挚爱的强哥8dee',//企业微信ID
- url: 'https://work.weixin.qq.com/kfid/kfc18你挚爱的强哥af71',//企业微信客户接入链接
- }
- let p = Object.keys(d).reduce((p, k, i) => p + `${i ? '&' : '?'}${k}=${d[k]}`, '');
- wx.miniProgram.reLaunch({ url: `/pages/index/index${p}` });//触发小程序刷新页面获取appId
- //pages/index/index.js代码如下
-
- Page({
-
- ...
-
- onLoad(options) {
- // 跳转到企业微信客服聊天窗口
- if (options.corpId && options.url) {
- //必须要触发点击事件才能唤起聊天窗口,所以多加了一个弹窗,否者会报错{errMsg: "openCustomerServiceChat:fail can only be invoked by user TAP gesture."}
- wx.showModal({
- title: '提示',
- content: '即将跳转到企业微信客服聊天窗口',
- confirmText: '我知道了',
- showCancel: false,
- success(res) {
- if (res.confirm) {
- wx.openCustomerServiceChat({
- corpId: options.corpId,//企业微信ID
- extInfo: { url: options.url },//企业微信聊天接入链接
- })
- }
- }
- })
- }
- },
-
- ...
-
- });
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。