알림톡 채널 생성일, 등록일 구분 추가

This commit is contained in:
itn 2023-06-30 11:31:47 +09:00
parent eef7b5267a
commit 55537d7ab8

View File

@ -191,30 +191,27 @@ function fnSelectMber(mberId) {
<col style="width: 5%">
<col style="width: 10%">
<col style="width: 15%">
<col style="width: 15%">
<col style="width: 20%">
<col style="width: 8%">
<col style="width: 10%">
<col style="width: 5%">
<col style="width: 15%">
<col style="width: 15%">
<col style="width: 10%">
</colgroup>
<thead>
<tr>
<!-- <th><input type="checkbox" id="chkAll" onClick="fnChkAll();"></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_yellowId"></th>
<th>채널명<input type="button" class="sort sortBtn" id="sort_yellowId"></th>
<th>등록상태</th>
<th>등록일</th>
<th>채널생성일</th>
<th>채널등록일</th>
<th>삭제여부<input type="button" class="sort sortBtn" id="sort_deleteYn"></th>
</tr>
</thead>
<tbody>
<c:forEach var="result" items="${resultChannelList}" varStatus="status">
<tr>
<%-- <td>
<input type="checkbox" name="chkSttusY" id="chkSttusY_${status.index}" value="${result.profileId}">
</td> --%>
<td>
<c:if test="${searchVO.searchSortOrd eq 'desc' }">
<c:out value="${ ( paginationInfo.totalRecordCount - ((paginationInfo.currentPageNo -1)*paginationInfo.recordCountPerPage) ) - status.index }"/>
@ -255,8 +252,12 @@ function fnSelectMber(mberId) {
</td>
<td>
<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>
<c:choose>
<c:when test="${result.deleteYn eq 'Y'}">
@ -310,12 +311,19 @@ function fnSelectMber(mberId) {
</dd>
</dl>
<dl>
<dt>등록일</dt>
<dt>채널생성일</dt>
<dd>
<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>
</dl>
<dl>
<dt>삭제여부</dt>
<dd>