12345678910111213141516171819202122 |
- (function (window, angular, $) {
- //获取模块
- var app = angular.module("main.panel", [
- 'eccrm.angular',
- 'eccrm.angularstrap'
- ]);
- //
- app.controller('Ctrl', function ($scope, CommonUtils, AlertFactory) {
- $scope.view = function (name, url) {
- CommonUtils.addTab({
- isRoot: true,
- targetObj: window.parent.top,
- title: name,
- url: url
- });
- };
- });
- })(window, angular, jQuery);
|