chengkun
2025-04-18 1bb985f32f2efe0f9dd69f3cf29a1c809b1cf96d
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<script type="text/javascript">
var weburl="{yun:}$config.sy_weburl{/yun}";
function checksiteall(url){
    var codewebarr="";
    $(".check_all:checked").each(function(){ //由于复选框一般选中的是多个,所以可以循环输出
        if(codewebarr==""){codewebarr=$(this).val();}else{codewebarr=codewebarr+","+$(this).val();}
    });
    if(codewebarr==""){
        parent.layer.msg('您还未选择任何信息!', 2, 8);    return false;
    }else{
        checksite('',codewebarr,url);
    }
}
function checksite(name,id,url){ 
    if(name==''){
        $("#com_name").html("");
    }
    $('#formDomain').attr('action', url);
    $('#siteusername').html(name);
    $('#sitekeyword').val('');
    $('#siteuid').val(id);
    $.layer({
        type : 1,
        title :'分配站点', 
        closeBtn : [0 , true],
        border : [10 , 0.3 , '#000', true],
        area : ['350px','200px'],
        page : {dom :"#infoboxdomain"}
    });
}
$(document).ready(function(){    
    $('#sitebutton').click(function(){        
        var pytoken = $('#pytoken').val();
        var keyword = $('#sitekeyword').val();
        $.post(weburl+"/index.php?m=ajax&c=selsite",{pytoken:pytoken,keyword:keyword},function(data){    
            $('#did_select').html(data);        
        });
    });    
});
</script>
<style>
.admin_compay_fp{width:340px; margin-top:10px;}
.admin_compay_fp_s{width:100px; text-align:right; font-weight:bold; display:inline-block}
.admin_compay_fp_sub{width:140px;height:25px;border:1px solid #ddd;}
.admin_compay_fp_sub1{width:40px;height:27px; background:#3692cf;color:#fff;border:none; cursor:pointer}
</style>
    <div id="infoboxdomain"  style="display:none; width: 350px; ">
        <form action="" target="supportiframe" method="post" id="formDomain"> 
            <div class="admin_compay_fp">
                <span class="admin_compay_fp_s" id="com_name">用户:</span> 
                <em  id="siteusername"></em>
            </div>
            <div class="admin_compay_fp">
                <span class="admin_compay_fp_s">分站搜索:</span>
                <input type="text" value="" id="sitekeyword" class="admin_compay_fp_sub">
                <input type='button' id="sitebutton" value="搜索" class="admin_compay_fp_sub1">
            </div>
            <div class="admin_compay_fp">
                <span class="admin_compay_fp_s">切换站点:</span>
                
                <!--
                <select name="did" id="sitedomainid"> 
                {yun:}foreach from=$Dname key=key item=dlist{/yun}
                <option value="{yun:}$key{/yun}">{yun:}$dlist{/yun}</option>
                {yun:}/foreach{/yun}
                </select>
                -->
                
                
                <div class="yun_admin_select_box zindex100"> 
                  <input type="button" value="请选择" class="yun_admin_select_box_text" id="did_name" onClick="select_click('did');">
                  <input name="did" type="hidden" id="did_val" value="">
                  <!--这块后加--> 
                 
                  <div class="yun_admin_select_box_list_box dn" id="did_select"> 
                    {yun:}foreach from=$Dname key=key item=dlist{/yun}
                    <div class="yun_admin_select_box_list"> <a href="javascript:;" onClick="select_new('did','{yun:}$key{/yun}','{yun:}$dlist{/yun}')">{yun:}$dlist{/yun}</a> </div>
                    {yun:}/foreach{/yun} 
                    </div>
           </div>
                
                
                
            </div>
            <div class="admin_compay_fp">
                <span class="admin_compay_fp_s">&nbsp;</span>
                <input type="submit"  value='确认' class="submit_btn"><input type="button"  onClick="layer.closeAll();" class="cancel_btn" value='取消' style="margin-left:10px;">
            </div> 
            <input type="hidden" name="pytoken" value="{yun:}$pytoken{/yun}">
            <input name="uid" value="0" id="siteuid" type="hidden">
        </form> 
    </div>