You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.1 KiB

  1. 'use strict';
  2. angular.module('app.blocks', ['ngRoute'])
  3. .config(['$routeProvider', function($routeProvider) {
  4. $routeProvider.when('/blocks', {
  5. templateUrl: 'views/blocks/blocks.html',
  6. controller: 'BlocksCtrl'
  7. });
  8. }])
  9. .controller('BlocksCtrl', function($scope, $http) {
  10. //last tx
  11. $scope.txs = [];
  12. $scope.page = 1;
  13. $scope.count = 10;
  14. $scope.getBlocks = function() {;
  15. $http.get(urlapi + 'blocks/' + $scope.page + '/' + $scope.count)
  16. .then(function(data, status, headers, config) {
  17. console.log(data);
  18. $scope.txs = data.data;
  19. }, function(data, status, headers, config) {
  20. console.log('data error');
  21. });
  22. };
  23. $scope.getBlocks();
  24. $scope.getPrev = function(){
  25. $scope.page++;
  26. $scope.getBlocks();
  27. };
  28. $scope.getNext = function(){
  29. $scope.page--;
  30. $scope.getBlocks();
  31. };
  32. });