46 lines
1.3 KiB
JavaScript
46 lines
1.3 KiB
JavaScript
'use strict';
|
|
|
|
angular.module('warehost')
|
|
.controller('PermissionWebCtrl',function(session,config,alert,NgTableParams,$scope,$rootScope,$http,$stateParams){
|
|
$scope.tableParams = new NgTableParams({
|
|
sorting: { 'login.username': 'asc' },
|
|
total: 0,
|
|
count: config.table.count
|
|
}, { dataset: [] });
|
|
alert.set({});
|
|
$scope.obj = {};
|
|
$scope.loginlist = [];
|
|
|
|
function resetObj(){
|
|
$scope.obj = {};
|
|
}
|
|
function load(){
|
|
$http.get(config.api+'/user').then(function(res){
|
|
$scope.loginlist = res.data.data;
|
|
$http.get(config.api+'/web/website/'+$stateParams.websiteid+'/permission').then(function(res){
|
|
session.set(res);
|
|
$scope.tableParams.settings({dataset: angular.copy(res.data.data),total: (res.data.data).length});
|
|
});
|
|
});
|
|
}
|
|
function submitresult(res){
|
|
session.set(res);
|
|
alert.set(res);
|
|
if(res.data.data){
|
|
resetObj();
|
|
$scope.isAdding = false;
|
|
load();
|
|
}
|
|
}
|
|
resetObj();
|
|
load();
|
|
$rootScope.$on('warehost.session',load);
|
|
|
|
$scope.delete = function(a){
|
|
$http.delete(config.api+'/web/website/'+$stateParams.websiteid+'/permission/'+a.login.ID).then(submitresult);
|
|
};
|
|
$scope.add = function(){
|
|
$http.post(config.api+'/web/website/'+$stateParams.websiteid+'/permission/'+$scope.obj.login.ID,{}).then(submitresult);
|
|
};
|
|
});
|