panel.js 516 B

12345678910111213141516171819202122
  1. (function (window, angular, $) {
  2. //获取模块
  3. var app = angular.module("main.panel", [
  4. 'eccrm.angular',
  5. 'eccrm.angularstrap'
  6. ]);
  7. //
  8. app.controller('Ctrl', function ($scope, CommonUtils, AlertFactory) {
  9. $scope.view = function (name, url) {
  10. CommonUtils.addTab({
  11. isRoot: true,
  12. targetObj: window.parent.top,
  13. title: name,
  14. url: url
  15. });
  16. };
  17. });
  18. })(window, angular, jQuery);