抖音IM客服问题如果点击成功是直接跳转到客服对话页面吗我真机调试报错errMsg: "invokeIMContainer:fail service error : im_id not bound , code = 14010"是不支持真机调试吗 一下是我的代码
<button open-type="im" :data-im-id="imId" @im="imCallback" @error="onimError" class="online btnCl">
在线沟通
</button>
imId: 'food1688',
imCallback(e) {
console.log("跳转IM客服成功", e.detail);
},
onimError(e) {
console.log("跳转IM客服失败", e.detail);
},
