ios企业微信在H5页面打开会话窗口回调中调用wx.closeWindow时,将会话窗口关闭了
功能:调用openEnterpriseChat后打开会话窗口,关闭H5网页页面,在安卓手机上表现正常,在ios中调用closeWindow后会打开会话窗口后
立刻关闭会话窗口并回到H5页面,看起来就是在H5页面闪了一下
代码片段:
wx.openEnterpriseChat({
userIds: this.data.userId,
externalUserIds: this.data.externalUserId,
groupName: '',
success: function(res) {
// 回调
wx.closeWindow()
},
fail: function(res) {
console.log('res', res)
}
})