<!DOCTYPE html>
<html lang="en">
<head>
<title>社团人员管理</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../club/css/bootstrap.min.css">
<link rel="icon" href="../images/logo220.png" type="image/x-icon"/>
<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdn.staticfile.org/popper.js/1.15.0/umd/popper.min.js"></script>
<script src="https://cdn.staticfile.org/twitter-bootstrap/4.3.1/js/bootstrap.min.js"></script>
<style>
.fakeimg {
height: 200px;
background: #aaa;
}
.img {
background: url("../club/images/logo.jpeg");
background-size: 100% auto;
height: 150px;
}
</style>
</head>
<body>
<?php
echo "<script>
document.cookie='comNumber= -1';
document.cookie='stuID= -1';
document.cookie='position= -1';
document.cookie='power= -1';
</script>";
require_once 'DB.php';
$conn = DB::connect('mysqli://root:password@localhost/club');
$conn->query("set names utf8");
session_start();
//$post_comCode = $_GET['comNo']; //合并之后用这句传值,下面那一句注释掉
$post_comCode='0001';
$sql_select_comName = $conn->query("SELECT clubName FROM clubinfo WHERE No='$post_comCode'");
$r = $sql_select_comName->fetchRow();
$comName = $r[0];
$sql_select_applyinfo = $conn->query("SELECT * FROM comApply WHERE community='$comName' AND status='Y'");
if ($sql_select_applyinfo) {
$res_select_applyinfo = [];
$count_select_applyinfo = 0;
while($r=$sql_select_applyinfo->fetchRow()){
$count_select_applyinfo++;
$res_select_applyinfo[] = $r;
}
for($applyinfo_i=0;$applyinfo_i<$count_select_applyinfo;$applyinfo_i++){
$row = $res_select_applyinfo[$applyinfo_i];
$stuNo = $row[2];
$stuName = $row[0];
$gender = $row[1];
$phone = $row[3];
$institute = $row[4];
$major = $row[5];
$community=$row[6];
$dept = $row[7];
$post="部员";
$stat=3;
$score=0;
$sql_check=$conn->query("SELECT * FROM comMember where comNumber = '".$post_comCode."' and stuID='".$stuNo."' ");
$check=$sql_check->fetchRow();
if(!$check){
$sql_add_mem = $conn->query("INSERT INTO `commember`(`comNumber`, `comName`, `depName`, `stuID`, `stuName`, `memPosition`, `memPower`, `memScore`) VALUES ('$post_comCode','$community','$dept','$stuNo','$stuName','$post','$stat','$score')");
if (DB::isError($sql_add_mem)) { die("添加成员失败! − " . $sql_add_mem->getMessage() . "<br>"); }
}
//添加成功后删除该申请
$sql="DELETE FROM `comapply` WHERE stuID='".$stuNo."' AND community = '".$community."' AND dept= '".$dept."'";
$sql_del_appl=$conn->query($sql);
//echo $sql;
if (DB::isError($sql_del_appl)) { die("删除申请失败! − " . $sql_del_appl->getMessage() . "<br>"); }
}
}
$sql="SELECT * FROM clubinfo WHERE No='$post_comCode'";
$q = $conn->query("SELECT * FROM clubinfo WHERE No='$post_comCode'");
//echo $sql;
if (DB::isError($q)) { die("查询失败! − " . $q->getMessage() . "<br>"); }
$r = $q->fetchRow();
?>
<div class="img"></div>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<a class="navbar-brand" href="#">导航</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="HomePage.html">首页</a>
</li>
</div>
</nav>
<div class="container" style="margin-top:30px">
<div class="row">
<div class="col-sm-3">
<ul class="nav nav-pills flex-column">
<li class="nav-item">
<a class="nav-link" href="s_infoManage.php">管理社团信息</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="s_manager2_memManage.php">管理社团人员</a>
</li>
</ul>
<hr class="d-sm-none">
</div>
<div class="col-sm-8">
<?php
$sql_select_dep = $conn->query("SELECT distinct depName FROM comMember WHERE comNumber='$post_comCode'");
$res_select_dep = [];
$count_select_dep = 0;
?>
<form>
<div class="form-group">
<select class="form-control" id="sel" onchange="jump(this.options[this.options.selectedIndex].value)">
<option value="">请选择部门</option>
<?php
while($r=$sql_select_dep->fetchRow()){
$count_select_dep++;
$res_select_dep[] = $r;
?>
<option value="<?php echo $r[0];?>"><?php echo $r[0];?></option>
<?php }?>
</select>
<br>
</div>
</form>
<?php
//有部门选择时
if(isset($_COOKIE["selDep"] ) && $_COOKIE["selDep"] != -1) {
?>
<table class="table table-striped" id="table" cellspacing="0">
<thead>
<tr>
<th>社团编号</th>
<th>社团</th>
<th>部门</th>
<th>学号</th>
<th>姓名</th>
<th>职位</th>
<th>权限</th>
<th>阳光信用积分</th>
<th></th>
</tr>
</thead>
<tbody>
<?php
$selDepart=$_COOKIE["selDep"] ;
$sql_select_mem = $conn->query("SELECT * FROM comMember WHERE comNumber='$post_comCode' AND depName= '$selDepart'");
$row=0;
while($r=$sql_select_mem->fetchRow()){
$row++;
?>
<tr>
<?php
for($attribute=0; $attribute<8; $attribute++){ ?>
<td><?php echo $r[$attribute]; ?></td>
<?php } ?>
<td><button class="btn btn-light" onclick="update(this,<?php echo $row; ?>)">修改</button></td>
</tr>
<?php } ?>
</tbody>
</table>
<?php } else {
?>
<table class="table table-striped" id="table" cellspacing="0">
<thead>
<tr>
<th>社团编号</th>
<th>社团</th>
<th>部门</th>
<th>学号</th>
<th>姓名</th>
<th>职位</th>
<th>权限</th>
<th>阳光信用积分</th>
<th></th>
</tr>
</thead>
<tbody>
<?php
//默认显示
$sql_select_mem = $conn->query("SELECT * FROM comMember WHERE comNumber='$post_comCode' ORDER BY depName");
$row=0;
while($r=$sql_select_mem->fetchRow()){
$row++;
?>
<tr>
<?php
for($attribute=0; $attribute<8; $attribute++){ ?>
<td><?php echo $r[$attribute]; ?></td>
<?php } ?>
<td><button class="btn btn-light" onclick="update(this,<?php echo $row ;?>)">修改</button></td>
</tr>
<?php }?>
</tbody>
</table>
</div>
<?php } ?>
<script>
var item = [ 'comNumber','comName','depName','stuID','stuName','memPosition','memPower','memScore' ];
function update(obj,x){
var table = document.getElementById("table");
console.log("table1"+table.rows[x].cells[5].innerHTML);
console.log("table1"+table.rows[x].cells[6].innerHTML);
var comNumber = table.rows[x].cells[0].innerHTML;
var stuID = table.rows[x].cells[3].innerHTML;
var position = table.rows[x].cells[5].innerHTML;
var power = table.rows[x].cells[6].innerHTML;
table.rows[x].cells[5].innerHTM
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
【项目资源】: 包含前端、后端、移动开发、操作系统、人工智能、物联网、信息化管理、数据库、硬件开发、大数据、课程资源、音视频、网站开发等各种技术项目的源码。 包括STM32、ESP8266、PHP、QT、Linux、iOS、C++、Java、python、web、C#、EDA、proteus、RTOS等项目的源码。 【项目质量】: 所有源码都经过严格测试,可以直接运行。 功能在确认正常工作后才上传。 【适用人群】: 适用于希望学习不同技术领域的小白或进阶学习者。 可作为毕设项目、课程设计、大作业、工程实训或初期项目立项。 【附加价值】: 项目具有较高的学习借鉴价值,也可直接拿来修改复刻。 对于有一定基础或热衷于研究的人来说,可以在这些基础代码上进行修改和扩展,实现其他功能。 【沟通交流】: 有任何使用上的问题,欢迎随时与博主沟通,博主会及时解答。 鼓励下载和使用,并欢迎大家互相学习,共同进步。
资源推荐
资源详情
资源评论
收起资源包目录
毕设&课设&项目&实训-社团管理系统--数据库课程设计.zip (206个子文件)
bootstrap.css 170KB
bootstrap.css 170KB
bootstrap.min.css 138KB
bootstrap.min.css 138KB
layui.css 59KB
bootstrap-grid.css 37KB
bootstrap-grid.min.css 28KB
style.css 24KB
layer.css 14KB
layer.css 14KB
weadmin.css 12KB
layui.mobile.css 10KB
laydate.css 7KB
layer.css 5KB
bootstrap-reboot.css 5KB
C.css 4KB
bootstrap-reboot.min.css 4KB
Community.css 3KB
C2.css 3KB
Community.css 3KB
c.css 3KB
studentInfo.css 3KB
shetuanshenqing.css 1KB
code.css 1KB
font.css 505B
iconfont.eot 48KB
iconfont.eot 39KB
loading-0.gif 6KB
loading-0.gif 6KB
loading-2.gif 2KB
loading-2.gif 2KB
loading-1.gif 701B
loading-1.gif 701B
page2.html 7KB
Administrator.html 3KB
HomePage.html 3KB
try.html 3KB
a_add_clubinfo.html 3KB
a_add_Commember.html 3KB
update.html 2KB
a_add_student.html 2KB
p_topFrame.html 1KB
a_select_commemberid.html 1KB
a_select_cominfoprincipal.html 1KB
a_select_commembername.html 1KB
a_select_stucominfo.html 1KB
a_select_commemberstuid.html 1KB
a_select_cominfoname.html 1KB
a_select_sname.html 1KB
a_select_cominfoid.html 1015B
a_select_stuID.html 1015B
logo.jpeg 74KB
logo1.jpeg 10KB
fig2.jpg 17.38MB
fig4.jpg 17.14MB
fig1.jpg 573KB
fig3.jpg 238KB
layui.all.js 226KB
jquery.js 95KB
jquery-3.2.0.min.js 85KB
mobile.js 33KB
laydate.js 27KB
layer.js 22KB
layer.js 21KB
treeGird.js 21KB
table.js 20KB
tabmenu.js 16KB
layedit.js 12KB
admin.js 12KB
form.js 9KB
code.js 8KB
element.js 7KB
upload.js 7KB
layui.js 6KB
laypage.js 4KB
weadmin.js 4KB
carousel.js 4KB
layer.js 3KB
tree.js 3KB
rate.js 3KB
util.js 3KB
eleDel.js 2KB
flow.js 2KB
laytpl.js 2KB
Clock.js 1KB
code.js 1KB
index.js 211B
weadmin.less 15KB
bootstrap.min.css.map 549KB
bootstrap.css.map 420KB
bootstrap-grid.css.map 96KB
bootstrap-grid.min.css.map 67KB
bootstrap-reboot.css.map 59KB
bootstrap-reboot.min.css.map 25KB
s_manager2_memManage.php 11KB
messages.php 10KB
s_apply_deal.php 9KB
s_member.php 7KB
s_date_modi_ren.php 7KB
s_infoManage.php 7KB
共 206 条
- 1
- 2
- 3
资源评论
妄北y
- 粉丝: 1w+
- 资源: 1万+
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- table-model-view-delagate核心总结
- java SSF项目框架源码 后台管理系统源码数据库 MySQL源码类型 WebForm
- 人工智能-大语言模型-基于Bert的预训练大语言推荐模型
- datax支持presto读取
- python《使用 Turtlebot 进行迷宫搜索》+项目源码+文档说明+代码注释
- 使用带有 BFS、UCS、Astar 和 GBFS 的 ros 解决 Gazebo 中的迷宫+项目源码+文档说明+代码注释
- 基于matlab实现寻路算法(AStar和HybridAStar算法)+项目源码+文档说明+代码注释
- C#ASP.NET教育OA源码 教育行业OA源码带文档数据库 SQL2008源码类型 WebForm
- wpf同时仅打开一个实例,重复打开时激活已打开实例窗口
- (源码)基于ESP8266和MQTT的智能信箱系统.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功