功能:企业微信中h5页面调用openEnterpriseChat打开会话窗口成功后,关闭H5网页页面,在安卓手机上表现正常,在ios中调用closeWindow后会打开会话窗口后立刻关闭会话窗口并回到H5页面。
代码片段:
let _this = this;
this.$wx.openEnterpriseChat({
userIds: '',
externalUserIds: this.external_userid,
groupName: '',
chatId: '',
success() {
_this.$wx.closeWindow();
},
fail: function(res) {
if (res.errMsg.indexOf('function not exist') > -1) {
alert('版本过低请升级');
}
},
});
请问解决了吗?