File: /www/wwwroot/oa.sanjiangapp.com/app/sys/user/js/admin.js
$(document).ready(function()
{
/* Set forbid link options. */
$('td.operate a.forbider').click(function()
{
$.getJSON($(this).attr('href'),function(data)
{
if(data.result == 'success') return location.href = data.locate;
bootbox.alert(data.message + '');
});
return false;
});
if(v.mode != 'normal')
{
$('.nav-default li').removeClass('active');
$('.nav-default li a[href*=' + v.mode + ']').parent('li').addClass('active');
}
$('.btn-checkUserLimit').click(function()
{
var link = $(this).attr('href');
var isModal = $(this).data('toggle') == 'modal';
$.get(createLink('user', 'ajaxCheckUserLimit', 'from=js'), function(response)
{
if(response.result == 'fail')
{
bootbox.alert(response.message);
}
else
{
if(isModal)
{
$.zui.modalTrigger.show({url: link, backdrop: 'static'});
}
else
{
location.href = link;
}
}
}, 'json');
return false;
});
});