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.

21 lines
687 B

  1. 'use strict';
  2. angular.module('app.block', ['ngRoute'])
  3. .config(['$routeProvider', function($routeProvider) {
  4. $routeProvider.when('/block/:height', {
  5. templateUrl: 'views/block/block.html',
  6. controller: 'BlockCtrl'
  7. });
  8. }])
  9. .controller('BlockCtrl', function($scope, $http, $routeParams) {
  10. $scope.block = {};
  11. $http.get(urlapi + 'block/' + $routeParams.height)
  12. .then(function(data, status, headers, config) {
  13. console.log(data);
  14. $scope.block = data.data;
  15. }, function(data, status, headers, config) {
  16. console.log('data error');
  17. });
  18. });