csView.php
5.6 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
172
173
174
175
176
177
178
179
180
181
<? include $_SERVER["DOCUMENT_ROOT"] . "/common/classes/AdminBoard.php" ?>
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/header.php" ?>
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/leftCustomerService.php" ?>
<?
$obj = new AdminBoard($_REQUEST, "") ;
$info = $obj->getInfoOfCS() ;
$commentList = $obj->getListOfCSComment();
$vnum = $obj->virtualNum ;
$rurl = pack("H*", $_REQUEST["rurl"]) ;
?>
<script>
$(document).ready(function(){
var _rurl = "<?=$rurl?>";
//=====프레입웤 변수들==================================================================================//
var FORM_TARGET_CLS_NM = "DIV#Contents" ; // 폼을 동적 wrap 할 타겟 ID이름
var FORM_NAME = "nf" ; // 폼이름
var FORM_METHOD = "GET" ; // 폼 메쏘드
var FORM_USE_FILE = false ; // 파일폼 사용 여부
var FORM_ACTION = document.URL ;
var NEXT_CMD = "" ; // 다은 수행 할 cmd
//=====================================================================================================//
var jForm = $(FORM_TARGET_CLS_NM).mf({ "name" : FORM_NAME , "method" : FORM_METHOD , "action" : FORM_ACTION , "useFile" : FORM_USE_FILE }) ;
// 페이징
$(".jPage").click2(function(){
jForm.ci() ;
jForm.mi("page",$(this).attr("page")) ;
jForm.submit() ;
}) ;
$(".jAutoSearch").change(function(){
jForm.ci() ;
jForm.submit() ;
});
$(".jSave").click2(function(){
$("#jData").ajaxSubmit({
url:"/action_front.php?cmd=AdminBoard.saveCS",
type : "post",
forceSync : true,
dataType : "json",
success : function(data){
alert(data.returnMessage);
location.href = _rurl;
}
});
});
$(".jCancel").click2(function(){
location.href = _rurl;
});
}) ;
</script>
<script type="text/javascript">
function doImgPop(img){
img1= new Image();
img1.src=(img);
imgControll(img);
}
function imgControll(img){
if((img1.width!=0)&&(img1.height!=0)){
viewImage(img);
}
else{
controller="imgControll('"+img+"')";
intervalID=setTimeout(controller,20);
}
}
function viewImage(img){
W=img1.width;
H=img1.height;
O="width="+W+",height="+H+",scrollbars=yes";
imgWin=window.open("","",O);
imgWin.document.write("<html><head><title>이미지상세보기</title></head>");
imgWin.document.write("<body topmargin=0 leftmargin=0>");
imgWin.document.write("<img src="+img+" onclick='self.close()' style='cursor:pointer;' title ='클릭하시면 창이 닫힙니다.'>");
imgWin.document.close();
}
</script>
<div id="Contents" class="notice">
<h1>고객센터</h1>
<h2>
고객센터 > <span>상세</span>
</h2>
<div class="data">
<form id="jData" method="post" enctype="multipart/form-data">
<input type="hidden" name="csNo" value="<?=$_REQUEST[no]?>" />
<table class="datav" style="width:100%;">
<colgroup>
<col width="30%" />
<col width="70%" />
</colgroup>
<tr>
<th style="height:25px;">내용</th>
<td class="l">
<textarea name="content" rows="5" style="width:95%;" ></textarea>
</td>
</tr>
</table>
<div class="btngroupright" style="width:100%;">
<span class="button bigrounded blue jSave" >등록</span>
</div>
</form>
<h3>히스토리</h3>
<table class="datacList">
<thead>
<tr>
<th width="10%">작성자</th>
<th width="65%">내용</th>
</tr>
</thead>
<tbody><!-- 10줄 리스트// 마지막 tr에 class="last" 넣어주세요 -->
<? for($i=0; $i<sizeof($commentList); $i++){ ?>
<tr class="<?=(sizeof($commentList)-1 == $i) ? "last" : "datacLists"?>">
<td class="center">
<?=$commentList[$i]["userName"]?>
</td>
<td class="center">
<?=$commentList[$i]["content"]?>
</td>
</tr>
<? } ?>
<?if(sizeof(info)>0){?>
<tr class="last">
<td class="center">
<?=$info["userName"]?>
</td>
<td class="center">
<?=$info["content"]?>
</td>
</tr>
<?}?>
</tbody>
</table>
<center>
<div class="data">
<?if($info["imgPathCS1"] != ""){?>
<img alt="" src="/720/<?=$info["imgPathCS1"]?>" onclick="doImgPop('/720/<?=$info["imgPathCS1"]?>')" style="width:15%; height:600%; cursor: pointer;">
<?}?>
<?if($info["imgPathCS2"] != ""){?>
<img alt="" src="/720/<?=$info["imgPathCS2"]?>" onclick="doImgPop('/720/<?=$info["imgPathCS1"]?>')" style="width:15%; height:600%; cursor: pointer;">
<?}?>
<?if($info["imgPathCS3"] != ""){?>
<img alt="" src="/720/<?=$info["imgPathCS3"]?>"onclick="doImgPop('/720/<?=$info["imgPathCS1"]?>')" style="width:15%; height:600%; cursor: pointer;">
<?}?>
<?if($info["imgPathCS4"] != ""){?>
<img alt="" src="/720/<?=$info["imgPathCS4"]?>" onclick="doImgPop('/720/<?=$info["imgPathCS1"]?>')" style="width:15%; height:600%; cursor: pointer;">
<?}?>
<?if($info["imgPathCS5"] != ""){?>
<img alt="" src="/720/<?=$info["imgPathCS5"]?>" onclick="doImgPop('/720/<?=$info["imgPathCS1"]?>')" style="width:15%; height:600%; cursor: pointer;">
<?}?>
</div>
</center>
</div>
</div>
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/footer.php" ?>