chengkun
2025-05-23 a6f7b382623096b6a00924f418447cf5204e825e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
$(function() {
    if(roomer == '1'){
        // 主动方
        var spviewinvite = window.localStorage.getItem('spviewinvite');
        if(spviewinvite == '1'){
            $("#spComment").css('display', 'block');
            showLoading();
            setTimeout(function(){
                hideLoading();
                sendComment(viewuid);
                sendWxNotice('',''+viewuid+'',''+jid+'');
                window.localStorage.setItem("spviewinvite", "2");
            },2000);
        }
    }else{
        // 非主动方
        if(usertype == '2'){
            // 企业挂断处理
            $("#hangUp").attr('onclick', 'spviewClose()');
        }
        var isspview = window.localStorage.getItem("isspview");
        setTimeout(function(){
            if(isspview && isspview == '1'){
                sendCommentAllow();
                joinRoom();
                window.localStorage.setItem("isspview", "2");
            }
        },1000);
    }
});