userView.php
3.82 KB
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
<? include $_SERVER["DOCUMENT_ROOT"] . "/common/classes/AdminUser.php" ?>
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/header.php" ?>
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/leftUserManage.php" ?>
<?
$obj = new AdminUser($_REQUEST, "");
//$userInfo = $obj->getInfoOfUser();
$rurl = pack("H*", $_REQUEST["rurl"]) ;
?>
<script language="javascript">
var _rurl = "<?=$rurl != "" ? $rurl : 0?>";
var _no = "<?=$_REQUEST[no] != "" ? $_REQUEST[no] : 0?>";
$(document).ready(function(){
$(".jCancel").click2(function(){
location.href = _rurl;
});
$(".jDelUser").click2(function(){
var noArr = new Array(_no);
if(confirm("정말 삭제하시겠습니까?"))
{
deleteUser(noArr);
}
});
$(".jAdd").click2(function(){
var data = $("#jData").serialize();
if(confirm("직원회원 계정을 등록하시겠습니까?")){
$.ajax({
url : "/action_front.php?cmd=AdminUser.saveManager",
async : false,
cache : false,
dataType : "json",
data : data,
success : function(data){
alert(data.returnMessage);
if(data.returnCode == "1")
location.href=_rurl;
/*
if(_no != "")
location.reload();
else
location.href = _rurl;
*/
}
});
}
});
$(".jCheckIDRedundancy").click2(function(){
var data = $("#jData").serialize();
$.ajax({
url : "/action_front.php?cmd=AdminUser.checkIDRedundancy",
async : false,
cache : false,
dataType : "json",
data : data,
success : function(data){
alert(data.returnMessage);
}
});
});
$(".jCheckNickRedundancy").click2(function(){
var data = $("#jData").serialize();
$.ajax({
url : "/action_front.php?cmd=AdminUser.checkNickRedundancy",
async : false,
cache : false,
dataType : "json",
data : data,
success : function(data){
alert(data.returnMessage);
}
});
});
}) ;
function deleteUser(noArr)
{
$.ajax({
url : "/action_front.php?cmd=AdminUser.deleteUser",
async : false,
cache : false,
dataType : "json",
data : {
"no" : noArr
},
success : function(data){
//alert("삭제되었습니다");
location.href = _rurl;
}
});
}
</script>
<div id="Contents" class="notice">
<h1>직원 등록</h1>
<!-- location area -->
<h2>
회원 관리 > 직원 > <span>등록</span>
</h2>
<!-- location area -->
<form id="jData">
<div class="jData" style="width:50%;">
<table class="datav" style="width:100%;">
<colgroup>
<col width="30%" />
<col width="70%" />
</colgroup>
<tr>
<th style="height:25px;">아이디</th>
<td >
<input name="userID" type="text" style="width:200px"/>
<span class="button bigrounded blue jCheckIDRedundancy" style="color:white; width:70px"> 중복확인 </span>
</td>
</tr>
<tr>
<th style="height:25px;">비밀번호</th>
<td >
<input name="userPwd" type="text" style="width:200px"/>
</td>
</tr>
<tr>
<th style="height:25px;">직원명</th>
<td class="l">
<input name="userName" type="text" style="width:200px" />
</td>
</tr>
<tr>
<th style="height:25px;">닉네임</th>
<td class="l">
<input name="nickName" type="text" style="width:200px" />
<span class="button bigrounded blue jCheckNickRedundancy" style="color:white; width:70px"> 중복확인 </span>
</td>
</tr>
<tr>
<th style="height:25px;">전화번호</th>
<td class="l">
<input name="userTel1" type="text" style="width:50px"/> - <input name="userTel2" type="text" style="width:50px"/> - <input name="userTel3" type="text" style="width:50px"/>
</td>
</tr>
</table>
<div class="btngroupcenter">
<span class="button bigrounded blue jAdd">등록</span>
</div>
</div>
</form>
</div>