星伟
2018-09-25 c9b14be3d1d4dc6bb483733b80b259bb6f86f6bf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 定义页面中的siderbar组件
;(function($, window, document, gl, undefined) {
    gl.namespace('pages.siderbar');
    
    first();
    // 生成一级导航
    function first() {
        $.ajax({     
            type: "post",                 
            url: "BattInfAction!serchAllStation",                
            async:true,                
            dataType:'text',
            data:null,    
            success: function(data){
                console.info(data);
            }
        });
    }
})(jQuery, window, document, GLOBAL);