2023-05-16 10:47:08 +08:00

44 lines
1.6 KiB
JavaScript

$(function()
{
$('#type').change(function()
{
var type = $(this).val();
$('#sendTypeTR').toggle(type != 'dinggroup' && type != 'dinguser' && type != 'wechatuser' && type != 'wechatgroup' && type != 'feishuuser' && type != 'feishugroup');
$('#secretTR').toggle(type == 'dinggroup' || type == 'feishugroup');
$('#urlTR').toggle(type != 'dinguser' && type != 'wechatuser' && type != 'feishuuser');
$('.dinguserTR').toggle(type == 'dinguser');
$('.wechatTR').toggle(type == 'wechatuser');
$('.feishuTR').toggle(type == 'feishuuser');
$('#paramsTR').toggle(type != 'bearychat' && type != 'dinggroup' && type != 'dinguser' && type != 'wechatuser' && type != 'wechatgroup' && type != 'feishuuser' && type != 'feishugroup');
$('#urlNote').html(urlNote[type]);
});
$('.objectType').click(function()
{
if($(this).prop('checked'))
{
$(this).parent().parent().next().find('input[type=checkbox]').attr('checked', 'checked');
}
else
{
$(this).parent().parent().next().find('input[type=checkbox]').removeAttr('checked');
}
});
$('#allParams, #allActions').click(function()
{
if($(this).prop('checked'))
{
$(this).parents('tr').find('input[type=checkbox]').attr('checked', 'checked');
}
else
{
$(this).parents('tr').find('input[type=checkbox][disabled!=disabled]').removeAttr('checked');
}
});
$('#name').focus();
$('#type').change();
$('#paramstext').attr('disabled', 'disabled');
});