xbx #174

Merged
theluyuan merged 3 commits from xbx into master 2020-11-30 05:47:19 +00:00
Showing only changes of commit 06f86fb780 - Show all commits

View File

@ -163,7 +163,12 @@ function setBtnClickFuc() {
leave();
$('#room-root').hide();
$('#login-root').show();
let promise = tim.dismissGroup(window.roomid);
promise.then(function(imResponse) { // 解散成功
console.log(imResponse.data.groupID); // 被解散的群组 ID
}).catch(function(imError) {
console.warn('dismissGroup error:', imError); // 解散群组失败的相关信息
});
$.ajax({
url: window.url + 'StopMCUMixTranscode?roomid=' + window.roomid,
headers: "Bearer " + localStorage.getItem("token"),