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);
|
|