알림톡 채널 생성일, 등록일 구분 추가
This commit is contained in:
parent
eef7b5267a
commit
55537d7ab8
@ -191,30 +191,27 @@ function fnSelectMber(mberId) {
|
|||||||
<col style="width: 5%">
|
<col style="width: 5%">
|
||||||
<col style="width: 10%">
|
<col style="width: 10%">
|
||||||
<col style="width: 15%">
|
<col style="width: 15%">
|
||||||
<col style="width: 15%">
|
|
||||||
<col style="width: 20%">
|
<col style="width: 20%">
|
||||||
<col style="width: 8%">
|
|
||||||
<col style="width: 10%">
|
<col style="width: 10%">
|
||||||
<col style="width: 5%">
|
<col style="width: 15%">
|
||||||
|
<col style="width: 15%">
|
||||||
|
<col style="width: 10%">
|
||||||
</colgroup>
|
</colgroup>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<!-- <th><input type="checkbox" id="chkAll" onClick="fnChkAll();"></th> -->
|
|
||||||
<th>번호<input type="button" class="sort sortBtn" id="sort_profileId"></th>
|
<th>번호<input type="button" class="sort sortBtn" id="sort_profileId"></th>
|
||||||
<th>회원ID<input type="button" class="sort sortBtn" id="sort_userId"></th>
|
<th>회원ID<input type="button" class="sort sortBtn" id="sort_userId"></th>
|
||||||
<th>채널ID<input type="button" class="sort sortBtn" id="sort_yellowId"></th>
|
<th>채널ID<input type="button" class="sort sortBtn" id="sort_yellowId"></th>
|
||||||
<th>채널명<input type="button" class="sort sortBtn" id="sort_yellowId"></th>
|
<th>채널명<input type="button" class="sort sortBtn" id="sort_yellowId"></th>
|
||||||
<th>등록상태</th>
|
<th>등록상태</th>
|
||||||
<th>등록일</th>
|
<th>채널생성일</th>
|
||||||
|
<th>채널등록일</th>
|
||||||
<th>삭제여부<input type="button" class="sort sortBtn" id="sort_deleteYn"></th>
|
<th>삭제여부<input type="button" class="sort sortBtn" id="sort_deleteYn"></th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<c:forEach var="result" items="${resultChannelList}" varStatus="status">
|
<c:forEach var="result" items="${resultChannelList}" varStatus="status">
|
||||||
<tr>
|
<tr>
|
||||||
<%-- <td>
|
|
||||||
<input type="checkbox" name="chkSttusY" id="chkSttusY_${status.index}" value="${result.profileId}">
|
|
||||||
</td> --%>
|
|
||||||
<td>
|
<td>
|
||||||
<c:if test="${searchVO.searchSortOrd eq 'desc' }">
|
<c:if test="${searchVO.searchSortOrd eq 'desc' }">
|
||||||
<c:out value="${ ( paginationInfo.totalRecordCount - ((paginationInfo.currentPageNo -1)*paginationInfo.recordCountPerPage) ) - status.index }"/>
|
<c:out value="${ ( paginationInfo.totalRecordCount - ((paginationInfo.currentPageNo -1)*paginationInfo.recordCountPerPage) ) - status.index }"/>
|
||||||
@ -255,7 +252,11 @@ function fnSelectMber(mberId) {
|
|||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<fmt:parseDate value="${result.createdAt}" var="dateValue" pattern="yyyy-MM-dd HH:mm:ss"/>
|
<fmt:parseDate value="${result.createdAt}" var="dateValue" pattern="yyyy-MM-dd HH:mm:ss"/>
|
||||||
<fmt:formatDate value="${dateValue}" pattern="yyyy-MM-dd"/>
|
<fmt:formatDate value="${dateValue}" pattern="yyyy-MM-dd HH:mm"/>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<fmt:parseDate value="${result.modifiedAt}" var="modifiedAtValue" pattern="yyyy-MM-dd HH:mm:ss"/>
|
||||||
|
<fmt:formatDate value="${modifiedAtValue}" pattern="yyyy-MM-dd HH:mm"/>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<c:choose>
|
<c:choose>
|
||||||
@ -310,10 +311,17 @@ function fnSelectMber(mberId) {
|
|||||||
</dd>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
<dl>
|
<dl>
|
||||||
<dt>등록일</dt>
|
<dt>채널생성일</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<fmt:parseDate value="${result.createdAt}" var="dateValue" pattern="yyyy-MM-dd HH:mm:ss"/>
|
<fmt:parseDate value="${result.createdAt}" var="dateValue" pattern="yyyy-MM-dd HH:mm:ss"/>
|
||||||
<fmt:formatDate value="${dateValue}" pattern="yyyy-MM-dd"/>
|
<fmt:formatDate value="${dateValue}" pattern="yyyy-MM-dd HH:mm"/>
|
||||||
|
</dd>
|
||||||
|
</dl>
|
||||||
|
<dl>
|
||||||
|
<dt>채널등록일</dt>
|
||||||
|
<dd>
|
||||||
|
<fmt:parseDate value="${result.modifiedAt}" var="modifiedAtValue" pattern="yyyy-MM-dd HH:mm:ss"/>
|
||||||
|
<fmt:formatDate value="${modifiedAtValue}" pattern="yyyy-MM-dd HH:mm"/>
|
||||||
</dd>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
<dl>
|
<dl>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user