You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
575 B
38 lines
575 B
|
|
|
|
|
|
function deleteAdmin(id){
|
|
ajax(
|
|
{
|
|
method:'POST',
|
|
url:'admin/adminManageAction_deleteAdmin.action',
|
|
params: "id=" + id,
|
|
callback:function(data) {
|
|
if (data == 1) {
|
|
showInfo("删除成功");
|
|
}
|
|
else {
|
|
showInfo("删除失败");
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
$('#modal_info').on('hide.bs.modal',function() {//提示模糊框隐藏时候触发
|
|
location.reload(); //刷新当前页面
|
|
});
|
|
|
|
|
|
|
|
function showInfo(msg) {
|
|
$("#div_info").text(msg);
|
|
$("#modal_info").modal('show');
|
|
}
|
|
|
|
|