Merge branch ztflow-sunguangming-dev/bug-62902#sunguangming of zentao/zentaopms (#8909)

This commit is contained in:
刘刚
2025-05-27 11:24:04 +08:00
committed by Gitfox
+3
View File
@@ -17,6 +17,8 @@ function toggleTeam()
$assignedToBox.find('.picker-box').addClass('hidden');
$assignedToBox.find('.assignedToList').removeClass('hidden');
$('input[name=estimate]').attr('disabled', true);
$('[name=parent]').zui('picker').$.setValue('');
$('[name=parent]').zui('picker').render({disabled: true});
}
else
{
@@ -24,6 +26,7 @@ function toggleTeam()
$assignedToBox.find('.picker-box').removeClass('hidden');
$assignedToBox.find('.assignedToList').addClass('hidden');
$('input[name=estimate]').removeAttr('disabled');
$('[name=parent]').zui('picker').render({disabled: false});
}
}