Files
EasySoft-ZenTaoPMS/module/program/js/prjedit.js
2020-10-19 13:56:46 +08:00

28 lines
485 B
JavaScript

$(function()
{
$('#longTime').change(function()
{
if($(this).prop('checked'))
{
$('#end').val('').attr('disabled', 'disabled');
$('#days').val('');
}
else
{
$('#end').removeAttr('disabled');
}
});
});
function setAclList(programID)
{
if(programID != 0)
{
$('.aclBox').html($('#PGMAcl').html());
}
else
{
$('.aclBox').html($('#PRJAcl').html());
}
}