|
|
@@ -68,6 +68,9 @@
|
|
68
|
68
|
padding: 0;
|
|
69
|
69
|
border: none;
|
|
70
|
70
|
}
|
|
|
71
|
+ .Common{
|
|
|
72
|
+ overflow-y:initial
|
|
|
73
|
+ }
|
|
71
|
74
|
</style>
|
|
72
|
75
|
</head>
|
|
73
|
76
|
|
|
|
@@ -222,9 +225,12 @@
|
|
222
|
225
|
$("#xl_one").click(function() {
|
|
223
|
226
|
$(this).parent().find(".menuContent").toggle();
|
|
224
|
227
|
});
|
|
225
|
|
- $("#xl_ones").click(function() {
|
|
226
|
|
- $(this).parent().find(".menuContent").toggle();
|
|
227
|
|
- });
|
|
|
228
|
+ $('.inps').focus(function() {
|
|
|
229
|
+ $('#menuContent').css('display', 'block')
|
|
|
230
|
+ })
|
|
|
231
|
+ $('#menuContent').mouseleave(function() {
|
|
|
232
|
+ $(this).css('display', 'none')
|
|
|
233
|
+ })
|
|
228
|
234
|
//树形结构 所有角色
|
|
229
|
235
|
function tree(saveArr) {
|
|
230
|
236
|
$.get(huayi.config.callcenter_url + 'Notice/GetRoleUsersList', {
|