<? include $_SERVER["DOCUMENT_ROOT"] . "/common/classes/AdminOperate.php" ?> <? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/header.php" ?> <? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/leftOperateManage.php" ?> <? $obj = new AdminOperate($_REQUEST, "") ; $list = $obj->getListOfShop() ; $vnum = $obj->virtualNum ; ?> <script> $(document).ready(function(){ //=====프레입웤 변수들==================================================================================// 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() ; }); $(".jSearch").click2(function(){ jForm.ci() ; jForm.submit() ; }); $(".jView").click2(function(){ var no = $(this).attr("no"); location.href = "/admin/operateManage/shopView.php?no=" + no + "&rurl=" + jQuery.rich.bin2hex(document.URL); }); $(".jAdd").click2(function(){ location.href = "/admin/operateManage/shopForm.php?rurl=" + jQuery.rich.bin2hex(document.URL); }); $(".jDel").click2(function(){ var no = $(this).attr("no"); var noArr = new Array(no); if(confirm("정말 삭제하시겠습니까?")) { deleteAction(noArr); } }) ; // 단체 삭제 $(".jDelMulti").click2(function(){ var noArr = new Array(); var noCount = $(".jNo:checked").length; if(noCount == 0) { alert("삭제할 대상을 하나 이상 선택해주세요."); return false; } if(confirm("정말 삭제하시겠습니까?")) { for(var i = 0; i < noCount; i++ ) { noArr[i] = $(".jNo:checked:eq(" + i + ")").val(); } deleteAction(noArr); } }); $("#jCheckAll").change(function(){ if($(this).is(":checked")) $(".jNo").prop("checked", true); else $(".jNo").prop("checked", false); }); }) ; function deleteAction(noArr) { $.ajax({ url : "/action_front.php?cmd=AdminOperate.delShop", async : false, cache : false, dataType : "json", data : { "no" : noArr }, success : function(data){ location.reload(); } }); } </script> <div id="Contents" class="notice"> <h1>상점 리스트</h1> <div class="data" style="padding-top:30px;" > <?if($loginInfo["admin_type"] != "3"){ ?> <fieldset class="search"> <div class="jSearchArea" > <label> <span># 상점타입</span> <select id="promotion" name="promotion"> <option value="" <?= ($_REQUEST['promotion'] == "") ? "SELECTED" : "" ?> >전체</option> <option value="1" <?= ($_REQUEST['promotion'] == "1") ? "SELECTED" : "" ?> >제휴상점</option> <option value="0" <?= ($_REQUEST['promotion'] == "0") ? "SELECTED" : "" ?> >일반상점</option> </select> </label> <label> <span># 상점명, 연락처, 주소</span> <input type="text" id="search_text" name="search_text" class="wm" value="<?=$_REQUEST['search_text']?>" /> </label> <input type="button" class="button bigrounded blue jSearch" style="margin-left:30px;" value="검색" /> </div> </fieldset> <?} ?> <?if($loginInfo["admin_type"] == "1"){ ?> <div class="btngroupright"> <input type="button" class="button bigrounded blue jAdd" value="등록" /> <input type="button" class="button bigrounded blue jDelMulti" value="삭제" /> </div> <?} ?> <table class="datacList"> <thead> <tr> <th class="no" width="5%" rowspan="2">No</th> <?if($loginInfo["admin_type"] == "1"){ ?> <th width="5%" rowspan="2"><input type="checkbox" id="jCheckAll"></th> <?} ?> <th width="10%" rowspan="2">상점 타입</th> <th width="15%" rowspan="2">상점명</th> <th width="10%" rowspan="2">연락처</th> <th width="25%">지번 주소</th> <th width="10%" rowspan="2">등록날짜</th> <th width="15%" rowspan="2">-</th> </tr> <tr> <th width="25%">도로명 주소</th> </tr> </thead> <tbody><!-- 10줄 리스트// 마지막 tr에 class="last" 넣어주세요 --> <? for($i=0; $i<sizeof($list); $i++){ ?> <tr class="<?=(sizeof($list)-1 == $i) ? "last" : "datacLists"?>"> <td class="no center" rowspan="2"> <?=$vnum--?> </td> <?if($loginInfo["admin_type"] == "1"){ ?> <td class="center" rowspan="2"> <input type="checkbox" class="jNo" value="<?=$list[$i]["no"] ?>" > </td> <?} ?> <td class="center" rowspan="2"> <? switch ($list[$i]["promotion"]) { case "0": echo "일반상점"; break; case "1": echo "제휴상점"; break; case "2": echo "원룸(다가구)"; break; case "3": echo "오피스텔"; break; case "4": echo "도시형생활주택"; break; case "5": echo "아파트"; break; case "6": echo "주택"; break; } ?> </td> <td class="center" rowspan="2"> <?=$list[$i]["name"]?> </td> <td class="center" rowspan="2"> <?=$list[$i]["tel"]?> </td> <td class="center"> <?=$list[$i]["addr_old"] ?> </td> <td class="center" rowspan="2"> <?=$list[$i]["regist_dt"]?> </td> <td class="center" rowspan="2"> <input type="button" class="button searchsmall white jView" value="상세보기" no="<?=$list[$i]["no"]?>" /> <?if($loginInfo["admin_type"] == "1"){ ?> <input type="button" class="button searchsmall white jDel" value="삭제" no="<?=$list[$i]["no"]?>" /> <?} ?> </td> </tr> <tr> <td class="center"> <?=$list[$i]["addr_new"] ?> </td> </tr> <? } ?> <?if(sizeof($list) == 0){?> <tr class="last"> <td class="no center" colspan="11">No Data</td> </tr> <?}?> </tbody> </table> <!-- Pagination --> <? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/pageNavigation.php" ?> <!--//Pagination --> </div> </div> <? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/footer.php" ?>