oldsysteam.js 513 B

123456789101112131415
  1. (function ($app) {
  2. $app.module('ylmis').controller('oldSysteamCtrl', function ($scope, $rootScope, $http, $filter, $modal, $ocLazyLoad, $alert, $loading, $state, AuthUser, $bsRouterState) {
  3. $scope.htmlResource = $rootScope.htmlResource;
  4. //加载列表数据
  5. $scope.loadData = function () {
  6. window.open($scope.htmlResource.OldSysteamUrl);
  7. $bsRouterState.$closeTabName("home.settings_oldsysteam");
  8. };
  9. $scope.loadData();
  10. });
  11. })(angular);