12345678910111213141516171819202122232425262728293031 |
- var forma = angular.module('forma', ['ngSanitize']);
-
- // Define the `PhoneListController` controller on the `phonecatApp` module
-
- forma.controller('FormController', function FormController($http, $scope, accion, tipo, id, user_type, $window) {
- console.log(accion +","+ tipo +","+ id);
- var url = '/'+user_type+'/formaDatos/'+accion+'/'+tipo+'/'
- if(id!="none")
- {
- url+= id;
- }
- $http.get(url).then(function(response) {
- if(response.data.error!==true)
- {
-
- $scope.entradas = response.data.entradas;
- $scope.titulo = response.data.titulo;
- $scope.accion = response.data.accion;
- $scope.abled = response.data.abled;
- }
- else
- {
- $window.location.href = '/'+user_type+'/error/'+response.data.tipo;
- console.log(response.data);
- }
-
- // $scope.selectedForm=
- // console.log(response.data);
- });
- });
|