16 lines
356 B
JavaScript
16 lines
356 B
JavaScript
|
|
|
||
|
|
$(document).on('click', '.userInfoTr', function (){
|
||
|
|
$.ajax({
|
||
|
|
url: '/authMgt/authEditModal',
|
||
|
|
data: {userSeq: Number($(this).find(".userSeq").val())},
|
||
|
|
type: 'GET',
|
||
|
|
dataType:"html",
|
||
|
|
success: function(html){
|
||
|
|
$("#configInfo").empty().append(html)
|
||
|
|
$("#authEditModal").modal('show');
|
||
|
|
},
|
||
|
|
error:function(){
|
||
|
|
|
||
|
|
}
|
||
|
|
});
|
||
|
|
})
|