IndustryFieldCtrl.js 655 B

12345678910111213141516171819202122232425
  1. angular.module('push')
  2. .controller('IndustryFieldCtrl', function ($scope) {
  3. if($scope.app){
  4. $scope.setStatusBar(0);
  5. }
  6. $scope.addListBack = function () {
  7. $scope.goback();
  8. };
  9. $scope.AuthorityList= [
  10. {name: "高端装备"},
  11. {name: "能源"},
  12. {name: "新材料"},
  13. {name: "高端装备"},
  14. {name: "电子信息"},
  15. {name: "机器人"},
  16. {name: "医药"},
  17. {name: "纺织"},
  18. {name: "核电"},
  19. {name: "汽车"}
  20. ];
  21. $scope.chooseNewUndid = function (Authority, index) {
  22. $scope.AuthorityList[index].checked = !$scope.AuthorityList[index].checked;
  23. };
  24. });