
$(".delete").click(function(){ var work_name = $(this).data('name');
var item_id = $(this).data('id'); swal({
title: "确定删除该申请吗?",
type: "warning",
showCancelButton: true,
confirmButtonColor: "#2baab1",
confirmButtonText: "确定",
cancelButtonText:"取消",
closeOnConfirm: false }
).then(function(isConfirm) { if (isConfirm === true) { //ajax 请求
$.get( "/office/personner-apply/delete",
{
item_id:item_id,
work_name:work_name
},
function(data){ if(data.code == 200)
{
swal({ text:'删除成功',showConfirmButton: false,type: "success",timer:1000}).then(function(){ window.location.reload();
}); }else{ swal({ text:'删除失败',showConfirmButton: false,type: "error",timer:1000});
} },
"json"
);
}
});
});