Files
EasySoft-ZenTaoPMS/module/custom/js/flow.js
2019-11-26 17:38:52 +08:00

19 lines
438 B
JavaScript

$(document).ready(function()
{
$('#mainMenu #flowTab').addClass('btn-active-text');
$('#ajaxForm').ajaxForm(
{
finish:function(response)
{
if(response.result == 'success')
{
bootbox.alert(response.notice, function()
{
location.href = response.locate;
});
}
return false;
}
});
});