123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- 'use strict';
- /**
- * controller for User Profile Example
- */
- app.controller('knowledgeplanCtrl', ["$rootScope","$scope", "$state", "$timeout", "$interval", "$modal", "SweetAlert", "i18nService", "uiGridConstants", "uiGridGroupingConstants", "Restangular", "api_configure_data", function ($rootScope, $scope, $state, $timeout, $interval, $modal, SweetAlert, i18nService, uiGridConstants, uiGridGroupingConstants, Restangular, api_configure_data) {
- $scope.langs=i18nService.getAllLangs();
- $scope.lang = 'zh-cn';
- i18nService.setCurrentLang($scope.lang);
-
- var loginUser=$rootScope.user;
- //$scope.allright=false;
- //$scope.allrightnot=true;
- $scope.gridOptions = {};
- $scope.gridOptions.data = 'myData';
- $scope.gridOptions.enableColumnResizing = true;
- $scope.gridOptions.enableFiltering = true;
- $scope.gridOptions.enableGridMenu = false;
- $scope.gridOptions.enableRowSelection = true;
- $scope.gridOptions.showGridFooter = true;
- $scope.gridOptions.showColumnFooter = false;
- $scope.gridOptions.fastWatch = true;
- $scope.gridOptions.useExternalFiltering=true;
- $scope.gridOptions.useExternalPagination = true;
- $scope.gridOptions.paginationPageSizes = [10];
- $scope.gridOptions.paginationPageSize = 10;
- $scope.gridOptions.multiSelect = true;
-
- //$scope.gridOptions.rowTemplate= "<div ng-dblclick=\"grid.appScope.onDblClick(row)\" ng-repeat=\"(colRenderIndex, col) in colContainer.renderedColumns track by col.uid\" ui-grid-one-bind-id-grid=\"rowRenderIndex + '-' + col.uid + '-cell'\" class=\"ui-grid-cell\" ng-class=\"{ 'ui-grid-row-header-cell': col.isRowHeader }\" role=\"{{col.isRowHeader ? 'rowheader' : 'gridcell'}}\" ui-grid-cell></div>";
-
- $scope.gridOptions.rowIdentity = function(row) {
- return row.id;
- };
- $scope.gridOptions.getRowIdentity = function(row) {
- return row.id;
- };
- $scope.transferRole = function(roles){
- var tempValue="";
- angular.forEach(roles,function(item){
- if(tempValue!=""){
- tempValue = tempValue + "/" ;
- }
- tempValue = tempValue + item.role;
- })
- return tempValue;
- }
- //remote data
- $scope.gridOptions.columnDefs = [
- { name:'category', displayName:'分类', width:100,enableFiltering:false},
- // { name:'emergency', displayName:'紧急度', width:100,enableFiltering:false},
- // { name:'influence', displayName:'影响度', width:140, enableFiltering:false},
- // { name:'source', displayName:'事件来源', width:100, enableFiltering:false},
- // { name:'closecode', displayName:'关闭代码', width:100, enableFiltering:false},
- // { name:'parent.title', displayName:'服务级别协议', width:100,enableFiltering:false},
- // { name:'parent.title', displayName:'业务规则', width:100,enableFiltering:false},
- // { name:'role', cellTemplate:'<div class="ui-grid-cell-contents">{{grid.appScope.transferRole(row.entity.role)}}</div>', displayName:'角色', width:140},
- { name:'编辑', cellTemplate:'<a class="btn btn-sm btn-info" ng-click="grid.appScope.saveData(row.entity)" tooltip="编辑">' +
- '<i class="fa fa-pencil-square-o"/></a>' , width:100,enableFiltering:false}
- //'<div class="links cl-effect-1">' +
- // '<a ng-click="grid.appScope.selectRowFunction(row.entity)" tooltip="编辑" tooltip-placement="left"><i class="fa fa-pencil-square-o"></i></a>'+
- // '</div>' , width:100, enableFiltering:false}
- ];
- $scope.saveData = function(data){
- var modelData = {
- model : {
- menu : data
- }
- };
- // console.log("modelData="+JSON.stringify(modelData));
- $state.go('app.system.form_editor',{formKey:'system_edit_navmanager', service:'api_configure_data',model : JSON.stringify(modelData)}
- );
- };
- // $scope.addData = function(){
- // $state.go('app.system.form',{formKey:'system_edit_navmanager', service:'api_configure_data',}
- // );
- // }
-
-
- $scope.removeData = function(){
- var rmvList = [];
- angular.forEach($scope.selected.items,function(item){
- rmvList.push(item.id);
- });
- if(rmvList.length>0){
- api_configure_data.rmvData('menu',rmvList).then(function(response){
- if(response.data){
- SweetAlert.swal({
- title: "删除成功!",
- type: "success",
- confirmButtonColor: "#007AFF"
- },function(){
- $scope.myData = _.reject($scope.myData, function(o) { return _.includes(rmvList,o.id); });
- $scope.selected = {
- items:[]
- };
- });
-
- }else{
- SweetAlert.swal({
- title: "操作异常!",
- text: "系统异常,请稍后重试,或者联系管理员!",
- type: "error"
- });
- }
- })
- }
- }
-
- $scope.selected = {
- items:[]
- }
- $scope.editted = {
- items:[]
- }
- $scope.gridOptions.onRegisterApi = function(gridApi){
- $scope.gridApi = gridApi;
- gridApi.edit.on.afterCellEdit($scope,function(rowEntity, colDef, newValue, oldValue){
- console.log(rowEntity);
- });
- gridApi.pagination.on.paginationChanged($scope, function (newPage, pageSize) {
- var filtersData = $scope.memoryfilterData;
- filtersData.idx=newPage-1;
- filtersData.sum=pageSize;
- $scope.refreshData('expand-right',filtersData);
- });
- gridApi.selection.on.rowSelectionChanged($scope, function(scope){
- var j=0;
- for(var i=0;i<=scope.grid.appScope.selected.items.length;i++){
- if(scope.grid.appScope.selected.items[i]==scope.entity){
- j++;
- break;
- }
- }
- // console.log("j="+j)
- if(j==1){
- scope.grid.appScope.selected.items.splice(i,1);
- }else{
- scope.grid.appScope.selected.items.push(scope.entity)
- }
- });
- gridApi.core.on.filterChanged( $scope, function() {
- var grid = this.grid;
- var filtersData = {
- idx:0,
- sum:10
- };
- angular.forEach(grid.columns,function(item){
- if(item.enableFiltering){
- if(angular.isDefined(item.filters[0].term)&&item.filters[0].term!=''){
- if(angular.isUndefined(filtersData['menu'])){
- filtersData['menu']={};
- }
- filtersData['menu'][item.field]=item.filters[0].term;
- }
- }
- });
- // $scope.memoryfilterData = filterData
- $scope.refreshData('expand-right', filtersData);
- });
- };
-
- var defaultFilterData = {
- "idx":0,
- "sum":10
- };
- $scope.memoryfilterData = {
- "idx":0,
- "sum":10
- }
- $scope.ldloading = {};
- $scope.refreshData = function(style,filterData){
- $scope.ldloading[style.replace('-', '_')] = true;
- if(angular.isUndefined(filterData)){
- filterData = defaultFilterData;
- }
- if(angular.isDefined($scope.searchTypes)){
- filterData['searchType'] = $scope.searchTypes;
- }
- $scope.myData = [];
- api_configure_data.fetchDataList('menu',filterData).then(function(data){
- var myData = Restangular.stripRestangular(data);
- $scope.gridOptions.totalItems = myData.totalNum;
- $scope.myData = myData.list;
- $scope.ldloading[style.replace('-', '_')] = false;
- },function(){
- $scope.ldloading[style.replace('-', '_')] = false;
- });
- };
- $scope.refreshData('expand-right', defaultFilterData);
- }]);
|