mirror of
https://github.com/LyLme/lylme_spage.git
synced 2024-11-17 22:38:03 +08:00
增加 分组禁用
This commit is contained in:
parent
f6aaa16d4f
commit
ed6b949ae2
@ -118,6 +118,16 @@ echo '
|
||||
$DB->query($delsql1);
|
||||
$DB->query($delsql2);
|
||||
exit();
|
||||
} elseif ($set == 'on') {
|
||||
$id = $_POST['group_id'];
|
||||
$sql = "UPDATE `lylme_groups` SET `group_status` = '1' WHERE `lylme_groups`.`group_id` =" . $id;
|
||||
$DB->query($sql);
|
||||
exit();
|
||||
} elseif ($set == 'off') {
|
||||
$id = $_POST['group_id'];
|
||||
$sql = "UPDATE `lylme_groups` SET `group_status` = '0' WHERE `lylme_groups`.`group_id` =" . $id;
|
||||
$DB->query($sql);
|
||||
exit();
|
||||
}
|
||||
elseif ($set == 'sort') {
|
||||
for ($i=0; $i<count($_POST["groups"]); $i++) {
|
||||
|
@ -69,6 +69,47 @@ function save_order(){
|
||||
});
|
||||
}
|
||||
|
||||
//启用分组
|
||||
function on_group(id){
|
||||
lightyear.loading('show');
|
||||
$.ajax({
|
||||
url:"group.php?set=on",
|
||||
method:"POST",
|
||||
data:{group_id:id},
|
||||
success:function(data){
|
||||
lightyear.loading('hide');
|
||||
lightyear.notify('操作成功!', 'success', 1000);
|
||||
listTable();
|
||||
return true;
|
||||
},
|
||||
error:function(data){
|
||||
layer.msg('服务器错误');
|
||||
lightyear.loading('hide');
|
||||
return false;
|
||||
}
|
||||
});
|
||||
}
|
||||
//禁用分组
|
||||
function off_group(id){
|
||||
lightyear.loading('show');
|
||||
$.ajax({
|
||||
url:"group.php?set=off",
|
||||
method:"POST",
|
||||
data:{group_id:id},
|
||||
success:function(data){
|
||||
lightyear.loading('hide');
|
||||
lightyear.notify('操作成功!', 'success', 1000);
|
||||
listTable();
|
||||
return true;
|
||||
},
|
||||
error:function(data){
|
||||
layer.msg('服务器错误');
|
||||
lightyear.loading('hide');
|
||||
return false;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
//删除分组
|
||||
function del_group(id) {
|
||||
$.confirm({
|
||||
|
@ -6,7 +6,7 @@ if(isset($islogin)==1) {
|
||||
echo '<div class="alert alert-info">系统共有 <b>' . $groupsrows . '</b> 个分组<br/><a href="./group.php?set=add" class="btn btn-primary">新建分组</a></div>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-striped">
|
||||
<thead><tr><th>名称</th><th>排序</th><th>链接数</th><th>访问密码</th><th>操作</th></tr></thead>
|
||||
<thead><tr><th>名称</th><th>排序</th><th>链接数</th><th>访问密码</th><th>状态</th><th>操作</th></tr></thead>
|
||||
<tbody>';
|
||||
|
||||
$sql = " 1";
|
||||
@ -16,7 +16,6 @@ echo '<div class="alert alert-info">系统共有 <b>' . $groupsrows . '</b> 个
|
||||
echo '<tr><td><input type="hidden" name="group_id" value="'.$res['group_id'].'">' . $res['group_name'] . '</td><td>
|
||||
<button class="btn btn-primary btn-xs sort-up">上移</button> <button class="btn btn-cyan btn-xs sort-down">下移</button></td>
|
||||
<td>'. $DB->num_rows($DB->query("SELECT `id` FROM `lylme_links` WHERE `group_id` =".$res['group_id'])).'</td>
|
||||
|
||||
<td>';
|
||||
if($pwd||$res['group_pwd']){
|
||||
if(empty($pwd)){
|
||||
@ -27,8 +26,15 @@ echo '<div class="alert alert-info">系统共有 <b>' . $groupsrows . '</b> 个
|
||||
}
|
||||
}
|
||||
else{echo '<font color="green">未加密</font>';}
|
||||
echo ' </td>
|
||||
<td> <a href="./group.php?set=edit&id=' . $res['group_id'] . '" class="btn btn-info btn-xs">编辑</a> <button class="btn btn-xs btn-danger" onclick="del_group('.$res['group_id'].')">删除</button></td></tr>';
|
||||
echo ' </td><td>';
|
||||
|
||||
if($res['group_status']){
|
||||
echo '<button class="btn btn-pink btn-xs" onclick="off_group('.$res['group_id'].')">禁用</button>';
|
||||
}else{
|
||||
echo '<button class="btn btn-success btn-xs" onclick="on_group('.$res['group_id'].')">启用</button>';
|
||||
}
|
||||
|
||||
echo'</td><td> <a href="./group.php?set=edit&id=' . $res['group_id'] . '" class="btn btn-info btn-xs">编辑</a> <button class="btn btn-xs btn-danger" onclick="del_group('.$res['group_id'].')">删除</button></td></tr>';
|
||||
}
|
||||
?>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user