Files
Inventario_material_v1/js/main.js
T

48 lines
1.3 KiB
JavaScript
Raw Normal View History

2019-01-14 17:18:56 -06:00
jQuery(document).on('submit','#formlg',function(event){
event.preventDefault();
jQuery.ajax({
url: 'login.php',
type: 'POST',
dataType: 'json',
data: $(this).serialize(),
beforeSend: function() {
$('.botonlg').val('Validando...');
}
})
.done(function (respuesta) {
console.log(respuesta);
2019-01-14 19:48:35 -06:00
console.log("afuera de if");
2019-01-14 17:18:56 -06:00
if (!respuesta.error){
2019-01-14 19:48:35 -06:00
console.log("despues de error");
2019-01-14 19:42:36 -06:00
if (respuesta.tipo == 'Jefatura')
2019-01-14 17:18:56 -06:00
{
2019-01-14 19:17:37 -06:00
//location.href = '132.248.80.188/Inventario/sitio/admin/admin.php';
2019-01-14 19:48:35 -06:00
console.log("jefatura");
2019-01-14 17:18:56 -06:00
}
2019-01-14 19:42:36 -06:00
else if (respuesta.tipo == 'Area')
2019-01-14 17:18:56 -06:00
{
2019-01-14 18:28:13 -06:00
location.href = '132.248.80.188/Inventario/sitio/usuario/usuario.php';
2019-01-14 17:18:56 -06:00
}
}
else{
$('.error').slideDown('slow');
setTimeout(function () {
$('.error').slideUp('slow')
},3000);
$('.botonlg').val('Iniciar Sesion');
}
})
.fail(function (resp) {
console.log(resp.responseText);
})
.always(function(){
console.log("complete");
});
});