shoppingmallv2 init...

This commit is contained in:
최준흠 2023-08-07 19:15:08 +09:00
parent ad107ed029
commit 7983294e2b
3 changed files with 16 additions and 8 deletions

View File

@ -21,9 +21,9 @@
<?= form_open(current_url() . '/batchjob', $viewDatas['forms']['attributes'], $viewDatas['forms']['hiddens']) ?>
<?php $cnt = 0 ?>
<?php foreach ($viewDatas['entitys'] as $entity) : ?>
<table class="table">
<table id="block" class="table">
<tbody>
<tr id="table_tr_border">
<tr>
<td width="14%" rowspan="3"><?= $entity->getPhotoFileName('middle') ?></td>
<td width="*">
<?= getFieldIndex_Row_ProductHelper('name', $entity, $viewDatas) ?>

View File

@ -21,7 +21,7 @@
<?= form_open(current_url() . '/batchjob', $viewDatas['forms']['attributes'], $viewDatas['forms']['hiddens']) ?>
<table class="table table-hover">
<thead>
<tr id="table_tr_border">
<tr>
<th>번호</th>
<?php foreach ($viewDatas['fields'] as $field) : ?><th><?= getFieldIndex_Column_ProductHelper($field, $viewDatas) ?></th><?php endforeach ?>
</tr>

View File

@ -6,20 +6,28 @@ div#content{
/* div#content div.top{
border:1px solid red;
} */
/* index block 전용 */
div#content table#block tr:first-child {
border-top:2px solid black;
border-bottom:1px solid silver;
}
div#content table#block tr td{
text-align:left;
}
/* index block 전용 */
div#content table {
white-space: nowrap;
/* overflow-x: auto;
padding-top:5px;
padding-bottom:5px; */
}
div#content table tr#table_tr_border{
border-top:2px solid black;
border-bottom:1px solid silver;
}
div#content table thead th{
text-align:center;
font-size: 16px;
font-weight: bolder;
border-top:2px solid black;
border-bottom:1px solid silver;
background-color:#eeeeee;
/* border:1px solid silver; */
}