csView.php 5.6 KB
<? 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" ?>