index.js 301 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 (function () { "use strict"; // 首页控制器 var indexController = function ($scope) { //每个导航对应的图标的高亮 $scope.$emit('navShow', 1); }; angular.module("xn.page", []) .controller("IndexController", ["$scope", indexController]); })();