测试白名单编辑修改成删除

master
zyx 5 years ago
parent 7beb0938e3
commit 2ad5017fae

@ -200,4 +200,32 @@ class TestWhiteListController extends ThinkController
}
}
public function deleteWhileUser() {
$userId = $_REQUEST['id'];
// dump($userId);die();
$userWhite = M('test_white_list','tab_')->where(['id'=>$userId])->find();
if ($userWhite) {
$del = M('test_white_list','tab_')->where(['id'=>$userId])->delete();
if ($del) {
$this->ajaxReturn(['status'=>0,'msg'=>"删除成功"]);
} else {
$this->ajaxReturn(['status'=>0,'msg'=>"删除失败"]);
}
} else {
$this->ajaxReturn(['status'=>0,'msg'=>"账号不存在,删除失败"]);
}
}
}

@ -81,7 +81,11 @@
<td>{$data.add_user}</td>
<td>{$data.create_ime}</td>
<td>
<a href="{:U('TestWhiteList/edit',array('user_id'=>$data['user_id'],'account'=>$data['account'],'status'=>$data['show_status']))}" style="width:100%;">编辑</a>
<!-- <a href="{:U('TestWhiteList/edit',array('user_id'=>$data['user_id'],'account'=>$data['account'],'status'=>$data['show_status']))}" style="width:100%;">编辑</a>-->
<!-- <a href="{:U('TestWhiteList/deleteWhileUser',array('id'=>$data['id']))}" style="width:100%;">删除</a>-->
<a class="del_user" href-hhh="{:U('TestWhiteList/deleteWhileUser',array('id'=>$data['id']))}" style="width:100%;">删除</a>
<if condition="$data['show_status'] eq 1">
<a class="froze-btn" href-hhh="{:U('TestWhiteList/edit_user1',array('user_id'=>$data['user_id'],'status'=>0,'account'=>$data['account']))}" style="width:100%;">锁定</a>
<else />
@ -151,6 +155,25 @@
}
})
$('.del_user').on({
click: function() {
var url = $(this).attr('href-hhh');
console.log(url);
layer.confirm('是否确认删除测试账号?', {icon: 3, title:'提示',skin:'textColor'}, function(index){
$.ajax({
url: url,
type: 'post',
dataType: 'json',
success: function(response) {
layer.msg(response.msg, {time: 1000,skin:'msgClolor'}, function() {
window.location.href = window.location.href
})
}
})
})
}
})
//搜索功能
$("#search").click(function () {
var url = $(this).attr('url');

Loading…
Cancel
Save