-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.php
134 lines (134 loc) · 5.28 KB
/
profile.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<?php
include "class/account.class.php";
include "class/config_var.class.php";
logcheck();
$A = new account();
$D = new dao();
$P = new PER();
$id = $A->getuserid();
$sql = "SELECT sms_user.username,sms_user.name,sms_user.tel,sms_user.organization,sms_user.permission,sms_organization.name AS oname FROM sms_user,sms_organization WHERE sms_user.organization=sms_organization.id AND sms_user.id='$id'";
$result = $D->getcachequery($sql);
$row = $result[0];
?>
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="css/signin.css">
<link type="image/x-icon" rel="shortcut icon" href="favicon.ico" />
<title>扬华SMS-个人中心</title>
</head>
<body class="fix-top">
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target=".navbar-responsive-collapse">
<span class="sr-only">Toggle Navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="#" class="navbar-brand">扬华SMS</a>
</div>
<div class="collapse navbar-collapse navbar-responsive-collapse">
<ul class="nav navbar-nav">
<li><a href="console.php?id=<?php echo $row["organization"]; ?>">控制台</a></li>
<li><a href="notice_manage.html">通知</a></li>
<li><a href="fresh_manage.html">招新管理</a></li>
<li><a href="member_manage.php?id=<?php echo $row["organization"]; ?>">成员管理</a></li>
<li><a href="send_log.html">历史记录</a></li>
<li class="active"><a href="profile.php"><span class="glyphicon glyphicon-user" aria-hidden="true"></span><?php echo $A->getusername(); ?></a></li>
<li><a href="logout.php">退出登录</a></li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12 col-lg-12">
<div class="panel panel-default">
<div class="panel-body">
<div class="btn-group btn-group-lg" role="group" aria-label="">
<button type="button" class="btn btn-default" data-target="#edit-info-modal" data-toggle="modal">编辑信息</button>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<span class="glyphicon glyphicon-stats" aria-hidden="true"></span>
<label>个人信息</label>
</div>
<table class="table table-responsive">
<thead>
<tr>
<th>用户名</th>
<th>姓名</th>
<th>电话号码</th>
</tr>
</thead>
<tbody>
<tr>
<td><?php echo $row["username"]; ?></td>
<td><?php echo $row["name"]; ?></td>
<td><?php echo $row["tel"]; ?></td>
</tr>
</tbody>
</table>
</div>
<div class="panel panel-default">
<div class="panel-heading">
<span class="glyphicon glyphicon-scale" aria-hidden="true"></span>
<label>参与部门</label>
</div>
<table class="table table-responsive">
<thead>
<tr>
<th>部门名</th>
<th>权限</th>
<th>操作</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="console.php?id=<?php echo $row["organization"]; ?>"><?php echo $row["oname"]; ?></a></td>
<td><?php echo $P->getname($row["permission"]); ?></td>
<td>
<div class="btn-group btn-group-sm" role="group" aria-label="">
<button type="button" class="btn btn-default btn-edit">退出</button>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="modal fade" id="edit-info-modal" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title">编辑信息</h4>
<input type="hidden" id="user-id" value="<?php echo $id; ?>">
</div>
<div class="modal-body">
<label class="form-control"><?php echo $row["username"]; ?></label>
<input type="text" placeholder="请输入姓名" id="modal-text-name" class="form-control" value="<?php echo $row["name"]; ?>">
<input type="text" placeholder="请输入电话号码" id="modal-text-tel" class="form-control" value="<?php echo $row["tel"]; ?>">
<div class="alert alert-dismissible hidden" id="modal-alert" role="alert">...</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">取消</button>
<button type="button" id="edit-submit" class="btn btn-primary">确定</button>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script type="text/javascript" src="js/edit.js"></script>
</body>
</html>