chengkun
2025-05-26 4462855c0033970c39ac8d0da704b7dc41eabbfe
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
31
$(function(){
    $('#resume_detail').click(function() {
        $('#nowresume').fadeToggle(100)
    });
    $('#dwc').show();
    if(roomer == '1'){
        // 主动方
        var spviewinvite = window.localStorage.getItem('spviewinvite');
        if(spviewinvite == '1'){
            loadlayer();
            setTimeout(function(){
                layer.closeAll();
                sendComment(viewuid);
                window.localStorage.setItem("spviewinvite", "2");
            },2000);
        }else{
            $("#reinvite").show();
            $('#dwc').hide();
        }
    }else{
        // 非主动方
        var isspview = window.localStorage.getItem("isspview");
        setTimeout(function(){
            if(isspview && isspview == '1'){
                sendCommentAllow();
                joinRoom();
                window.localStorage.setItem("isspview", "2");
            }
        },1000);
    }
})