This commit is contained in:
2020-12-03 17:37:20 +08:00
parent a80bc93086
commit 25b645b359
25 changed files with 204 additions and 21 deletions

View File

@@ -363,12 +363,16 @@ function addMemberView(id) {
function removeView(id) {
console.log("被删除")
if ($('#' + id)[0]) {
// $('#' + id).remove();
if(id.indexOf("-") != -1){
$('#' + id).remove();
}
//将video-grid中第一个div设为main-video
$('.video-box')
.first()
.css('grid-area', '1/1/3/4');
}
}
function exchangeView(a, b) {