Modify enterprise wechat work message notice

This commit is contained in:
leiyong
2020-02-24 10:48:46 +08:00
parent f6a7fb114c
commit 325dbe1a5a
9 changed files with 54 additions and 45 deletions

View File

@@ -5,10 +5,10 @@ $(function()
var type = $(this).val();
$('#sendTypeTR').toggle(type != 'dingding' && type != 'dingapi');
$('#secretTR').toggle(type == 'dingding');
$('#urlTR').toggle(type != 'dingapi' && type != 'weixin');
$('#urlTR').toggle(type != 'dingapi' && type != 'wechatApi');
$('.dingapiTR').toggle(type == 'dingapi');
$('.wechatTR').toggle(type == 'weixin');
$('#paramsTR').toggle(type != 'bearychat' && type != 'dingding' && type != 'dingapi' && type != 'weixin' && type != 'wxRobot');
$('.wechatTR').toggle(type == 'wechatApi');
$('#paramsTR').toggle(type != 'bearychat' && type != 'dingding' && type != 'dingapi' && type != 'wechatApi' && type != 'weixin');
$('#urlNote').html(urlNote[type]);
});