added tx page in frontend and backend route. Added address tx chart time analysis

This commit is contained in:
arnaucode
2017-08-30 00:32:56 +02:00
parent 99af4a76ff
commit 52ec7f0a0a
10 changed files with 205 additions and 28 deletions

View File

@@ -18,4 +18,16 @@ angular.module('app.address', ['ngRoute'])
}, function(data, status, headers, config) {
console.log('data error');
});
$scope.addresstimechart= {
data:[],
labels: []
};
$http.get(urlapi + 'addresstimechart/' + $routeParams.hash)
.then(function(data, status, headers, config) {
console.log(data);
$scope.addresstimechart.data = data.data.data;
$scope.addresstimechart.labels = data.data.labels;
}, function(data, status, headers, config) {
console.log('data error');
});
});