|
|
@@ -0,0 +1,505 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html lang="ko"
|
|
|
+ xmlns:th="http://www.thymeleaf.org">
|
|
|
+<!--
|
|
|
+ *******************************************************************************
|
|
|
+ * @source : MktmailmanagementDetailForm.html
|
|
|
+ * @desc : MktmailmanagementDetailForm 등록/수정 상세 팝업화면
|
|
|
+ *============================================================================
|
|
|
+ * STYLE24
|
|
|
+ * Copyright(C) 2020 TSIT, All rights reserved.
|
|
|
+ *============================================================================
|
|
|
+ * VER DATE AUTHOR DESCRIPTION
|
|
|
+ * === =========== ========== =============================================
|
|
|
+ * 1.0 2021. 02. 05 csh9191 최초 작성
|
|
|
+ *******************************************************************************
|
|
|
+ -->
|
|
|
+<div class="modalPopup" data-width="1200" id="popupMailHF">
|
|
|
+ <div class="panelStyle" style="max-height:700px;overflow-y:scroll;">
|
|
|
+ <!-- 팝업창 타이틀 -->
|
|
|
+ <div class="panelTitle">
|
|
|
+ <strong th:text="${'이메일' + (mode == 'N' ? '등록' : '상세')}">이메일</strong>
|
|
|
+ <button type="button" class="close" onclick="uifnPopupClose('popupMailHF');"><em class="fa fa-times"></em></button>
|
|
|
+ </div>
|
|
|
+ <!-- 팝업창 타이틀 -->
|
|
|
+
|
|
|
+ <!-- 팝업창 상단부분 시작-->
|
|
|
+ <div class="panelContent">
|
|
|
+ <form id="mailHFForm" name="mailHFForm" action="#" th:action="@{'/marketing/mailtemplate/save'}" th:method="post">
|
|
|
+ <input type="hidden" name="mode" th:value="${mode}"/>
|
|
|
+
|
|
|
+ <table class="frmStyle" aria-describedby="">
|
|
|
+ <colgroup>
|
|
|
+ <col style="width:10%;"/>
|
|
|
+ <col/>
|
|
|
+ </colgroup>
|
|
|
+ <tbody>
|
|
|
+ <tr>
|
|
|
+ <th>메일번호</th>
|
|
|
+ <td>
|
|
|
+ <input type="text" name="mailtSq" maxlength="20" placeholder="자동생성" readonly="readonly"/>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <th>헤더</th>
|
|
|
+ <td><select name="mailHsq">
|
|
|
+ <option value="">[전체]</option>
|
|
|
+ <option th:if="${mailHsqList}"
|
|
|
+ th:each="oneData, status : ${mailHsqList}"
|
|
|
+ th:value="${oneData.cd}"
|
|
|
+ th:text="${'[' + oneData.cd + '] ' + oneData.cdNm}"></option>
|
|
|
+ </select></td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <th>푸터</th>
|
|
|
+ <td><select name="mailHsq">
|
|
|
+ <option value="">[전체]</option>
|
|
|
+ <option th:if="${mailFsq}"
|
|
|
+ th:each="oneData, status : ${mailFsqList}"
|
|
|
+ th:value="${oneData.cd}"
|
|
|
+ th:text="${'[' + oneData.cd + '] ' + oneData.cdNm}"></option>
|
|
|
+ </select></td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <th>타이틀</th>
|
|
|
+ <td><input type="text" name="mailhfNm" maxlength="50" required="required" data-valid-name="타이틀" /></td>
|
|
|
+ </tr>
|
|
|
+
|
|
|
+ <tr>
|
|
|
+ <th>HTML / 이미지 설정<em class="required" title="필수"></em></th>
|
|
|
+ <td>
|
|
|
+ <textarea class="textareaR4" id="mailContent" name="mailContent" data-valid-name="내용"></textarea>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </tbody>
|
|
|
+
|
|
|
+ </table>
|
|
|
+ </form>
|
|
|
+ </div>
|
|
|
+ <!-- 팝업창 상단부분 끝-->
|
|
|
+
|
|
|
+ <!-- 팡업창 하단부분 시작 -->
|
|
|
+ <div class="panelStyle" style="margin:unset;">
|
|
|
+ <!-- TITLE -->
|
|
|
+ <div class="panelTitle">
|
|
|
+ <h2>상품 전시 설정</h2>
|
|
|
+ <span class="panelControl">
|
|
|
+ <i class="fa inner-fa-chevron-up"></i> <!-- 열림/닫힘 화살표 -->
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+ <!-- //상품 전시 설정 -->
|
|
|
+ <div class="inner-panelContent">
|
|
|
+ <div class="panelContent">
|
|
|
+ <ul class="panelBar">
|
|
|
+ <li class="left">
|
|
|
+ <p>최대 5개 까지 상품 전시 구분을 추가하실 수 있습니다.</p>
|
|
|
+ <p>상품은 구분자 당 최대 40 개 까지만 등록하실 수 있습니다.</p>
|
|
|
+ </li>
|
|
|
+ <li class="right">
|
|
|
+ <button type="button" class="btn btnRight btn-success btn-lg" id="btnAddGrid" onclick="btnAddGrid();">구분추가하기</button>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ <!-- 구분 1 -->
|
|
|
+ <form id="searchForm1" name="searchForm1" action="#" th:action="@{'/'}">
|
|
|
+ <div class="inner-panelContent" id="btnAddGridNum" style="display:none;">
|
|
|
+ <div class="panelContent">
|
|
|
+ <table class="frmStyle">
|
|
|
+ <colgroup>
|
|
|
+ <col width="10%"/>
|
|
|
+ <col width="90%"/>
|
|
|
+ </colgroup>
|
|
|
+ <tr>
|
|
|
+ <th>상품 구분 1<br><br>
|
|
|
+ <button type="button" class="btn btn-danger btn-lg" id="" onclick="btnDeleteGridNum();">구분 삭제</button>
|
|
|
+ </th>
|
|
|
+ <td>
|
|
|
+ <div class="">
|
|
|
+ <table class="frmStyle">
|
|
|
+ <tr>
|
|
|
+ <th class="w100">번호</th>
|
|
|
+ <td>
|
|
|
+ <input type="text" name="" placeholder="자동생성" readonly="readonly"/>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <th>링크</th>
|
|
|
+ <td>
|
|
|
+ <input type="text" name=""/>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <th>상품 노출 기준</th>
|
|
|
+ <td>
|
|
|
+ <label class="rdoBtn"><input type="radio" name=""/>1개</label>
|
|
|
+ <label class="rdoBtn"><input type="radio" name=""/>2개</label>
|
|
|
+ <label class="rdoBtn"><input type="radio" name="" checked/>3개</label>
|
|
|
+ <label class="rdoBtn"><input type="radio" name=""/>4개</label>
|
|
|
+ <label class="rdoBtn"><input type="radio" name=""/>5개</label>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ <ul class="panelBar">
|
|
|
+ <li class="left">
|
|
|
+ <button type="button" class="btn btn-danger btn-lg" id="">상품삭제</button>
|
|
|
+ </li>
|
|
|
+ <li class="right">
|
|
|
+ <button type="button" class="btn btn-info btn-lg" id="">상품추가</button>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ <!-- Agrid -->
|
|
|
+ <div id="gridSectionGbList1" style="width:100%; height:200px;" class="ag-theme-balham"></div>
|
|
|
+ </div>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </form> <!-- 구분1 -->
|
|
|
+ <!-- 구분 1 -->
|
|
|
+
|
|
|
+ <!-- 구분2 -->
|
|
|
+ <form id="searchForm2" name="searchForm2" action="#" th:action="@{'/'}">
|
|
|
+ <div class="inner-panelContent" id="btnAddGridNum2" style="display:none;">
|
|
|
+ <div class="panelContent">
|
|
|
+ <table class="frmStyle">
|
|
|
+ <colgroup>
|
|
|
+ <col width="10%"/>
|
|
|
+ <col width="90%"/>
|
|
|
+ </colgroup>
|
|
|
+ <tr>
|
|
|
+ <th>상품 구분 2<br><br>
|
|
|
+ <button type="button" class="btn btn-danger btn-lg" id="" onclick="btnDeleteGridNum2();">구분 삭제</button>
|
|
|
+ </th>
|
|
|
+ <td>
|
|
|
+ <div class="">
|
|
|
+ <table class="frmStyle">
|
|
|
+ <tr>
|
|
|
+ <th class="w100">번호</th>
|
|
|
+ <td>
|
|
|
+ <input type="text" name="" placeholder="자동생성" readonly="readonly"/>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <th>링크</th>
|
|
|
+ <td>
|
|
|
+ <input type="text" name=""/>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <th>상품 노출 기준</th>
|
|
|
+ <td>
|
|
|
+ <label class="rdoBtn"><input type="radio" name=""/>1개</label>
|
|
|
+ <label class="rdoBtn"><input type="radio" name=""/>2개</label>
|
|
|
+ <label class="rdoBtn"><input type="radio" name="" checked/>3개</label>
|
|
|
+ <label class="rdoBtn"><input type="radio" name=""/>4개</label>
|
|
|
+ <label class="rdoBtn"><input type="radio" name=""/>5개</label>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ <ul class="panelBar">
|
|
|
+ <li class="left">
|
|
|
+ <button type="button" class="btn btn-danger btn-lg" id="" >상품삭제</button>
|
|
|
+ </li>
|
|
|
+ <li class="right">
|
|
|
+ <button type="button" class="btn btn-info btn-lg" id="">상품추가</button>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ <!-- Agrid -->
|
|
|
+ <div id="gridSectionGbList2" style="width:100%; height:200px;" class="ag-theme-balham"></div>
|
|
|
+ </div>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ <!-- 구분2 -->
|
|
|
+
|
|
|
+ <!-- 구분3 -->
|
|
|
+ <form id="searchForm3" name="searchForm3" action="#" th:action="@{'/'}">
|
|
|
+ <div class="inner-panelContent" id="btnAddGridNum3" style="display:none;">
|
|
|
+ <div class="panelContent">
|
|
|
+ <table class="frmStyle">
|
|
|
+ <colgroup>
|
|
|
+ <col width="10%"/>
|
|
|
+ <col width="90%"/>
|
|
|
+ </colgroup>
|
|
|
+ <tr>
|
|
|
+ <th>상품 구분 3<br><br>
|
|
|
+ <button type="button" class="btn btn-danger btn-lg" id="" onclick="btnDeleteGridNum3();">구분 삭제</button>
|
|
|
+ </th>
|
|
|
+ <td>
|
|
|
+ <div class="">
|
|
|
+ <table class="frmStyle">
|
|
|
+ <tr>
|
|
|
+ <th class="w100">번호</th>
|
|
|
+ <td>
|
|
|
+ <input type="text" name="" placeholder="자동생성" readonly="readonly"/>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <th>링크</th>
|
|
|
+ <td>
|
|
|
+ <input type="text" name=""/>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <th>상품 노출 기준</th>
|
|
|
+ <td>
|
|
|
+ <label class="rdoBtn"><input type="radio" name=""/>1개</label>
|
|
|
+ <label class="rdoBtn"><input type="radio" name=""/>2개</label>
|
|
|
+ <label class="rdoBtn"><input type="radio" name="" checked/>3개</label>
|
|
|
+ <label class="rdoBtn"><input type="radio" name=""/>4개</label>
|
|
|
+ <label class="rdoBtn"><input type="radio" name=""/>5개</label>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ <ul class="panelBar">
|
|
|
+ <li class="left">
|
|
|
+ <button type="button" class="btn btn-danger btn-lg" id="" >상품삭제</button>
|
|
|
+ </li>
|
|
|
+ <li class="right">
|
|
|
+ <button type="button" class="btn btn-info btn-lg" id="">상품추가</button>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ <!-- Agrid -->
|
|
|
+ <div id="gridSectionGbList3" style="width:100%; height:200px;" class="ag-theme-balham"></div>
|
|
|
+ </div>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ <!-- 구분3 -->
|
|
|
+
|
|
|
+ <!-- 구분4 -->
|
|
|
+ <form id="searchForm4" name="searchForm4" action="#" th:action="@{'/'}">
|
|
|
+ <div class="inner-panelContent" id="btnAddGridNum4" style="display:none;">
|
|
|
+ <div class="panelContent">
|
|
|
+ <table class="frmStyle">
|
|
|
+ <colgroup>
|
|
|
+ <col width="10%"/>
|
|
|
+ <col width="90%"/>
|
|
|
+ </colgroup>
|
|
|
+ <tr>
|
|
|
+ <th>상품 구분 4<br><br>
|
|
|
+ <button type="button" class="btn btn-danger btn-lg" id="" onclick="btnDeleteGridNum4();">구분 삭제</button>
|
|
|
+ </th>
|
|
|
+ <td>
|
|
|
+ <div class="">
|
|
|
+ <table class="frmStyle">
|
|
|
+ <tr>
|
|
|
+ <th class="w100">번호</th>
|
|
|
+ <td>
|
|
|
+ <input type="text" name="" placeholder="자동생성" readonly="readonly"/>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <th>링크</th>
|
|
|
+ <td>
|
|
|
+ <input type="text" name=""/>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <th>상품 노출 기준</th>
|
|
|
+ <td>
|
|
|
+ <label class="rdoBtn"><input type="radio" name=""/>1개</label>
|
|
|
+ <label class="rdoBtn"><input type="radio" name=""/>2개</label>
|
|
|
+ <label class="rdoBtn"><input type="radio" name="" checked/>3개</label>
|
|
|
+ <label class="rdoBtn"><input type="radio" name=""/>4개</label>
|
|
|
+ <label class="rdoBtn"><input type="radio" name=""/>5개</label>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ <ul class="panelBar">
|
|
|
+ <li class="left">
|
|
|
+ <button type="button" class="btn btn-danger btn-lg" id="" >상품삭제</button>
|
|
|
+ </li>
|
|
|
+ <li class="right">
|
|
|
+ <button type="button" class="btn btn-info btn-lg" id="">상품추가</button>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ <!-- Agrid -->
|
|
|
+ <div id="gridSectionGbList4" style="width:100%; height:200px;" class="ag-theme-balham"></div>
|
|
|
+ </div>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ <!-- 구분4 -->
|
|
|
+
|
|
|
+ <!-- 구분5 -->
|
|
|
+ <form id="searchForm5" name="searchForm5" action="#" th:action="@{'/'}">
|
|
|
+ <div class="inner-panelContent" id="btnAddGridNum5" style="display:none;">
|
|
|
+ <div class="panelContent">
|
|
|
+ <table class="frmStyle">
|
|
|
+ <colgroup>
|
|
|
+ <col width="10%"/>
|
|
|
+ <col width="90%"/>
|
|
|
+ </colgroup>
|
|
|
+ <tr>
|
|
|
+ <th>상품 구분 5<br><br>
|
|
|
+ <button type="button" class="btn btn-danger btn-lg" id="" onclick="btnDeleteGridNum5();">구분 삭제</button>
|
|
|
+ </th>
|
|
|
+ <td>
|
|
|
+ <div class="">
|
|
|
+ <table class="frmStyle">
|
|
|
+ <tr>
|
|
|
+ <th class="w100">번호</th>
|
|
|
+ <td>
|
|
|
+ <input type="text" name="" placeholder="자동생성" readonly="readonly"/>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <th>링크</th>
|
|
|
+ <td>
|
|
|
+ <input type="text" name=""/>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <th>상품 노출 기준</th>
|
|
|
+ <td>
|
|
|
+ <label class="rdoBtn"><input type="radio" name=""/>1개</label>
|
|
|
+ <label class="rdoBtn"><input type="radio" name=""/>2개</label>
|
|
|
+ <label class="rdoBtn"><input type="radio" name="" checked/>3개</label>
|
|
|
+ <label class="rdoBtn"><input type="radio" name=""/>4개</label>
|
|
|
+ <label class="rdoBtn"><input type="radio" name=""/>5개</label>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ <ul class="panelBar">
|
|
|
+ <li class="left">
|
|
|
+ <button type="button" class="btn btn-danger btn-lg" id="" >상품삭제</button>
|
|
|
+ </li>
|
|
|
+ <li class="right">
|
|
|
+ <button type="button" class="btn btn-info btn-lg" id="">상품추가</button>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ <!-- Agrid -->
|
|
|
+ <div id="gridSectionGbList5" style="width:100%; height:200px;" class="ag-theme-balham"></div>
|
|
|
+ </div>
|
|
|
+ </td>
|
|
|
+ </tr>
|
|
|
+ </table>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </form>
|
|
|
+ <!-- 구분5 -->
|
|
|
+
|
|
|
+
|
|
|
+ </div> <!-- panelContent -->
|
|
|
+ </div> <!-- end of inner-panelContent -->
|
|
|
+ </div>
|
|
|
+ <!-- 팡업창 하단부분 끝 -->
|
|
|
+
|
|
|
+ <!-- 버튼 배치 영역 -->
|
|
|
+ <ul class="panelBar">
|
|
|
+ <li class="left" th:if="${mode == 'N' }">
|
|
|
+ <button type="button" class="btn btn-danger btn-lg" id="btndeleteMailHF">삭제</button>
|
|
|
+ </li>
|
|
|
+ <li class="right">
|
|
|
+ <button type="button" class="btn btn-info btn-lg" id="btnSaveMailHF">저장</button>
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ <!-- //버튼 배치 영역 -->
|
|
|
+ </div>
|
|
|
+</div>
|
|
|
+
|
|
|
+<script type="text/javascript" src="/ux/plugins/summernote/summernote.js?v=2020102902"></script>
|
|
|
+<script type="text/javascript" src="/ux/plugins/gaga/gaga.summernote.js?v=20201030"></script>
|
|
|
+<script th:inline="javascript">
|
|
|
+/*<![CDATA[*/
|
|
|
+
|
|
|
+ // 상품 구분 추가 버튼
|
|
|
+ // 추가 버튼 표시는 1~5까지 순서대로 표시
|
|
|
+ function btnAddGrid(){
|
|
|
+ if($('#btnAddGridNum').css('display') == 'none'){
|
|
|
+ $('#btnAddGridNum').show();('#searchForm1')
|
|
|
+ }else if($('#btnAddGridNum2').css('display') == 'none'){
|
|
|
+ $('#btnAddGridNum2').show();('#searchForm2')
|
|
|
+ }else if($('#btnAddGridNum3').css('display') == 'none' && $('#btnAddGridNum2').css('display') != 'none'){
|
|
|
+ $('#btnAddGridNum3').show();('#searchForm3')
|
|
|
+ }else if($('#btnAddGridNum4').css('display') == 'none' && $('#btnAddGridNum3').css('display') != 'none'){
|
|
|
+ $('#btnAddGridNum4').show();('#searchForm4')
|
|
|
+ }else if($('#btnAddGridNum5').css('display') == 'none' && $('#btnAddGridNum4').css('display') != 'none'){
|
|
|
+ $('#btnAddGridNum5').show();('#searchForm5')
|
|
|
+ }else if($('#btnAddGridNum5').css('display') != 'none'){
|
|
|
+ mcxDialog.alertC("구분자는 최대 5개까지 등록가능합니다.", {
|
|
|
+ sureBtnText: "확인"
|
|
|
+ });
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ } //end of btnAddGrid
|
|
|
+
|
|
|
+ // 상품 구분 삭제 버튼
|
|
|
+ // 삭제는 해당 하는 폼이 삭제
|
|
|
+ function btnDeleteGridNum(){
|
|
|
+ if($('#btnAddGridNum').css('display') !='none'){
|
|
|
+ $('#btnAddGridNum').hide();
|
|
|
+ $('#btnAddGridNum')[0].reset();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ function btnDeleteGridNum2(){
|
|
|
+ if($('#btnAddGridNum2').css('display') !='none'){
|
|
|
+ $('#btnAddGridNum2').hide();
|
|
|
+ $('#searchForm2')[0].reset();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ function btnDeleteGridNum3(){
|
|
|
+ if ($('#btnAddGridNum3').css('display') !='none'){
|
|
|
+ $('#btnAddGridNum3').hide();
|
|
|
+ $('#searchForm3')[0].reset();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ function btnDeleteGridNum4(){
|
|
|
+ if ($('#btnAddGridNum4').css('display') !='none'){
|
|
|
+ $('#btnAddGridNum4').hide();
|
|
|
+ $('#searchForm3')[0].reset();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ function btnDeleteGridNum5(){
|
|
|
+ if ($('#btnAddGridNum5').css('display') !='none'){
|
|
|
+ $('#btnAddGridNum5').hide();
|
|
|
+ $('#searchForm5')[0].reset();
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ //상품 전시 그리드 그리기
|
|
|
+ var columnMktProductList = [
|
|
|
+ {width: 40, minWidth: 40, cellClass: 'text-center', headerCheckboxSelection: true, checkboxSelection: true, filter: false},
|
|
|
+ {headerName: "Product ID", field: "" , width: 120, cellClass: 'text-center'},
|
|
|
+ {headerName: "상품명", field: "" , width: 200, cellClass: 'text-center'},
|
|
|
+ {headerName: "판매상태", field: "" , width: 120, cellClass: 'text-center'},
|
|
|
+ {headerName: "정상가", field: "" , width: 120, cellClass: 'text-center'},
|
|
|
+ {headerName: "판매가", field: "" , width: 120, cellClass: 'text-center'},
|
|
|
+ {headerName: "순번", field: "" , width: 120, cellClass: 'text-center'},
|
|
|
+ ];
|
|
|
+
|
|
|
+ //리스토 값 전달
|
|
|
+ var gridOptionsMktProductList = gagaAgGrid.getGridOptions(columnMktProductList);
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ $(document).ready(function() {
|
|
|
+
|
|
|
+ gagaAgGrid.createGrid("gridSectionGbList1", gridOptionsMktProductList);
|
|
|
+ gagaAgGrid.createGrid("gridSectionGbList2", gridOptionsMktProductList);
|
|
|
+ gagaAgGrid.createGrid("gridSectionGbList3", gridOptionsMktProductList);
|
|
|
+ gagaAgGrid.createGrid("gridSectionGbList4", gridOptionsMktProductList);
|
|
|
+ gagaAgGrid.createGrid("gridSectionGbList5", gridOptionsMktProductList);
|
|
|
+
|
|
|
+
|
|
|
+ // Create a summernote
|
|
|
+ let snOptions = gagaSn.getToolbarOptions();
|
|
|
+ gagaSn.createSummernote(snOptions, '#mailContent');
|
|
|
+
|
|
|
+
|
|
|
+ });
|
|
|
+/*]]>*/
|
|
|
+</script>
|
|
|
+
|
|
|
+</html>
|