this.tuiCallEngine.on(TUICallEvent.USER_ENTER, this.handleUserEnter)
this.tuiCallEngine
.startRemoteView({
userID: this.visitPhone,
videoViewDomID: "remote-xxx",
})
.then(res => {
console.log(
res,
"startRemoteView success------------------------------"
)
})
.catch(error => {
console.log(
error,
"startRemoteView error------------------------------"
)
})
相似问题