쇼핑몰관리자: #25 쇼핑몰관리 배너관리 목록 구조 수정

This commit is contained in:
whitedot
2013-04-22 16:36:25 +09:00
parent ebd9df2490
commit 5826d42bf9
2 changed files with 18 additions and 10 deletions

View File

@ -29,11 +29,10 @@ $from_record = ($page - 1) * $rows; // 시작 열을 구함
<a href="./bannerform.php">배너추가</a> <a href="./bannerform.php">배너추가</a>
</div> </div>
<table> <table id="tbl_bn_list">
<thead> <thead>
<tr> <tr>
<th scope="col">ID</th> <th scope="col" rowspan="2">ID</th>
<th scope="col">이미지</th>
<th scope="col">위치</th> <th scope="col">위치</th>
<th scope="col">시작일시</th> <th scope="col">시작일시</th>
<th scope="col">종료일시</th> <th scope="col">종료일시</th>
@ -41,6 +40,9 @@ $from_record = ($page - 1) * $rows; // 시작 열을 구함
<th scope="col">조회</th> <th scope="col">조회</th>
<th scope="col">관리</th> <th scope="col">관리</th>
</tr> </tr>
<tr>
<th scope="col" colspan="6">이미지</th>
</tr>
</thead> </thead>
<tbody> <tbody>
<? <?
@ -64,18 +66,20 @@ $from_record = ($page - 1) * $rows; // 시작 열을 구함
?> ?>
<tr> <tr>
<td class="td_num"><?=$row['bn_id']?></td> <td rowspan="2" class="td_num"><?=$row['bn_id']?></td>
<td><?=$bn_img?></td> <td><?=$row['bn_position']?></td>
<td class="td_num"><?=$row['bn_position']?></td> <td><?=$bn_begin_time?></td>
<td class="td_time"><?=$bn_begin_time?></td> <td><?=$bn_end_time?></td>
<td class="td_time"><?=$bn_end_time?></td> <td><?=$row['bn_order']?></td>
<td class="td_num"><?=$row['bn_order']?></td> <td><?=$row['bn_hit']?></td>
<td class="td_num"><?=$row['bn_hit']?></td>
<td class="td_smallmng"> <td class="td_smallmng">
<a href="./bannerform.php?w=u&amp;bn_id=<?=$row['bn_id']?>"><img src="./img/icon_mod.jpg" alt="배너수정"></a> <a href="./bannerform.php?w=u&amp;bn_id=<?=$row['bn_id']?>"><img src="./img/icon_mod.jpg" alt="배너수정"></a>
<a href="javascript:del('./bannerformupdate.php?w=d&amp;bn_id=<?=$row['bn_id']?>');"><img src="./img/icon_del.jpg" alt="배너삭제"></a> <a href="javascript:del('./bannerformupdate.php?w=d&amp;bn_id=<?=$row['bn_id']?>');"><img src="./img/icon_del.jpg" alt="배너삭제"></a>
</td> </td>
</tr> </tr>
<tr>
<td colspan="6" class="td_img_view"><?=$bn_img?></td>
</tr>
<? <?
} }

View File

@ -294,6 +294,7 @@ td {padding:8px 5px 6px;border-top:1px solid #e9e9e9;border-bottom:1px solid #e9
.td_pt {text-align:right !important} .td_pt {text-align:right !important}
.td_payby {width:100px;text-align:center} .td_payby {width:100px;text-align:center}
.td_it_img {text-align:left !important} .td_it_img {text-align:left !important}
.td_img_view {text-align:center}
.td_stats {} .td_stats {}
.td_small_stats {width:40px;text-align:center} .td_small_stats {width:40px;text-align:center}
@ -455,6 +456,9 @@ strong.sodr_nonpay {display:block;padding:5px 0;text-align:right}
/* 이벤트 입력/수정 */ /* 이벤트 입력/수정 */
.frm_ev_id {display:inline-block;margin:0 10px 0 0;font-weight:bold} .frm_ev_id {display:inline-block;margin:0 10px 0 0;font-weight:bold}
/* 배너관리 */
#tbl_bn_list {text-align:center}
/* 팝업레이어 관리 */ /* 팝업레이어 관리 */
#spop_list {text-align:center} #spop_list {text-align:center}