Files
shopxo/public/static/admin/default/js/role.js
gongfuxiang 2786d9db57 v6.6.0
2025-04-25 20:21:19 +08:00

12 lines
306 B
JavaScript
Executable File

$(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');
});
});
});