vehicleSpecification.php 3.76 KB
<?php
/**
 * Created by PhpStorm.
 * User: p
 * Date: 2017-10-10
 * Time: 오후 3:10
 */
?>


<? include $_SERVER["DOCUMENT_ROOT"] . "/common/classes/AdminBoard.php" ?>
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/header.php" ?>
<? include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/php/leftBoardManage.php" ?>
<?
$obj		= new AdminBoard($_REQUEST, "");
$info		= $obj->getInfoOfVehicleSpecification();

$rurl		= pack("H*", $_REQUEST["rurl"]) ;
?>
<script src="/admin/inc/fileUpload/fileUploadJS.js"></script>
<script type="text/javascript">
    var _rurl = "<?=$rurl?>";
    var _no = "<?=$_REQUEST[no]?>";

    $(document).ready(function(){

        initFileUpload(101);

        //=====프레입웤 변수들==================================================================================//
        var FORM_TARGET_CLS_NM		= ".data"	;		// 폼을 동적 wrap 할 타겟 ID이름
        var FORM_NAME				= "alf"		;		// 폼이름
        var FORM_METHOD				= "POST"		;		// 폼 메쏘드
        var FORM_USE_FILE			= false		;		// 파일폼 사용 여부
        var FORM_ACTION				= "/action_front.php" ;


        var NEXT_CMD				= ""		;		// 다은 수행 할 cmd
        //=====================================================================================================//

        var jForm = $(FORM_TARGET_CLS_NM).mf({ "name" : FORM_NAME , "method" : FORM_METHOD , "action" : FORM_ACTION , "useFile" : FORM_USE_FILE }) ;

        $(".jCancel").click2(function(){
            location.href = _rurl;
        });


        $(".jSave").click2(function(){
            if(confirm("내용을 저장하시겠습니까?")){
                $("#jData").ajaxSubmit({
                    url:"/action_front.php?cmd=AdminBoard.saveVehicleSpecification",
                    type : "post",
                    forceSync : true,
                    dataType : "json",
                    success : function(data){
                        alert(data.returnMessage);
                        location.href = _rurl;
                    }

                });
            }

        });

    }) ;

</script>

<div id="Contents"  class="notice">

    <h1>특장 제원표</h1>

    <!-- location area -->
    <h2>
        게시물관리 > <span>특장 제원표</span>
    </h2>
    <!-- location area -->


    <div class="data" style="width:80%;">

        <form id="jData" method="post" enctype="multipart/form-data">
            <table class="datav" style="width:100%;">
                <colgroup>
                    <col width="10%" />
                    <col width="90%" />
                </colgroup>
                <tr>
                    <th style="height:25px;">내용</th>
                    <td class="l">
                        <textarea name="content" rows="7" style="width:90%;resize:vertical;"><?=$info["content"]?></textarea>
                    </td>
                </tr>

                <tr>
                    <th style="height:25px;">이미지</th>
                    <td class="l">
                        <?
                        $fileIndex	= "101";
                        $fileName	= "imgPath1";
                        $filePath	= ($info["imgPath1"] == "" ? "" : $info["imgPath1"]);
                        //$fileNumber	= ($shopImgList[0]["no"] == "" ? "0" : $shopImgList[0]["no"]);
                        include $_SERVER["DOCUMENT_ROOT"] . "/admin/inc/fileUpload/fileUpload.php";
                        ?>
                        <input type="hidden" name="imgPath1" value="<?=$info["imgPath1"]?>" />
                    </td>
                </tr>
            </table>
        </form>

        <div class="btngroupcenter">
<!--            <span class="button bigrounded blue jCancel">취소 </span>-->
            <span class="button bigrounded blue jSave" >저장</span>
        </div>

    </div>
</div>