您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

home.controller.js 589B

1234567891011121314
  1. angular.module('camotionAdmin')
  2. .controller('HomeController', ['$scope', '$state', 'luticateAuthCache',
  3. function($scope, $state, luticateAuthCache) {
  4. if (luticateAuthCache.hasEffectivePermission("CAMOTION_CAMERA_GET")) {
  5. $state.go('cameras');
  6. }
  7. else if (luticateAuthCache.hasEffectivePermission("CAMOTION_SENSOR_GET")) {
  8. $state.go('sensors');
  9. }
  10. else if (luticateAuthCache.hasEffectivePermission("CAMOTION_COMMAND_GET")) {
  11. $state.go('commands');
  12. }
  13. }]);