Ggongfuxiangv6.6.0
2786d9db创建于 2025年4月25日历史提交
$(function()
{
	// 插件选择操作
	$(document).on('click', '.tree-plugins input[type="checkbox"]', function()
	{
		var state = $(this).is(':checked');
		$(this).parents('.item').find('.tree-list input[type="checkbox"]').each(function()
		{
			$(this).uCheck(state ? 'check' : 'uncheck');
		});
	});
});