app_bhi.controller("indexController", ["$scope", "$http", "$sce", function ($scope, $http, $sce) { $scope.news_name = "寮€瀛﹀吀绀兼毃鍐涜"; $scope.news_content = "9鏈堝紑瀛﹀锛屼腑鐟為厭搴楃鐞嗗闄㈣繋鏉?015绾ф柊鐢?鏈堝紑瀛﹀涓憺閰掑簵绠$悊瀛﹂櫌杩庢潵2015瀛﹂櫌..."; $scope.themenavlist= []; var getnavlist = function(){ $http.jsonp(App.config.api+'/get_navigate?col_type=2&callback=JSON_CALLBACK').success(function(rep){ if (rep.code==1){ $scope.themenavlist=rep.data; }; }); }; getnavlist(); }]); // 棣栭〉骞垮憡handler app_bhi.controller("adController", ["$scope", "$http", "$sce", function ($scope, $http, $sce) { $scope.ads = []; var url = App.config.api + '/ad/list?callback=JSON_CALLBACK&p=1&size=1&&nav_id=1'; $http.jsonp(url).success(function(resp){ if(resp.code == 1){ if(resp.data && resp.data.length == 3){ $scope.ads = resp.data; $scope.ads[0].css = 'main_three_pro' $scope.ads[1].css = 'main_three_pro main_three_mp' $scope.ads[2].css = 'main_three_pro main_three_ts' } } }); }]);