修改gfs

This commit is contained in:
wu ming 2016-09-27 08:54:00 +08:00
parent db2884438d
commit 9fba2532f1
3 changed files with 13 additions and 24 deletions

File diff suppressed because one or more lines are too long

View File

@ -35,8 +35,7 @@ module Configs{
}
$scope.editRow = (volume) => {
var fVolume = formatVolume(volume);
console.log(fVolume);
var fVolume = formatVolume(volume);
ngDialog.open({
template: 'newDialog.html',
width: 1005,

View File

@ -13,8 +13,10 @@ module Configs{
}]);
export var VolumeController = controller('VolumeController', ['$scope', '$http', ($scope, $http) => {
$scope.status = $scope.ngDialogData.status;
$scope.save = (entity) =>{
changeStatus(entity);
console.log(entity);
$scope.closeThisDialog();
}
@ -41,27 +43,20 @@ module Configs{
}
$scope.stopVolume = (volume) =>{
volume.status="false";
volume.status = false;
//$scope. status=
}
$scope.startVolume = (volume) =>{
volume.status="true";
volume.status = true;
}
$scope.$watch("ngDialogData.status", (newValue, oldValue) => {
if(newValue && newValue != oldValue){
$scope.$apply();
console.log($scope.volume)
}
});
function changeStatus(entity){
angular.forEach(entity.brick, (brick) =>{
brick["ip"] = brick.ip.join(".");
});
console.log(entity);
});
$http({
url: "/java/console/api/volume/update",