Files
EasySoft-ZenTaoPMS/module/program/js/pgmedit.js
T
2020-11-13 11:38:22 +08:00

27 lines
462 B
JavaScript

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