You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
simple-yewu/frontend/views/business-order/logs-view.php

18 lines
935 B

<table width="98%" border="0" align="center" cellpadding="2" cellspacing="1" class="table">
<tr>
<td width="120" align="center" class="bg_tr" nowrap>姓名</td>
<td width="200" align="center" class="bg_tr" nowrap>操作时间</td>
<td width="50%" align="center" class="bg_tr" nowrap>审核意见</td>
<td width="30%" align="center" class="bg_tr" nowrap>意见说明</td>
</tr>
<?php if($log_items): ?>
<?php foreach ($log_items as $item): ?>
<tr>
<td align="center" class="td_bg" nowrap><?= $item->op_man ?></td>
<td class="td_bg" style="word-break: break-all"><?= date('Y-m-d H:i:s', $item->op_time) ?></td>
<td class="td_bg" nowrap><?= $item->info ?></td>
<td class="td_bg" style="word-break: break-all"><?= $item->remark ?></td>
</tr>
<?php endforeach; ?>
<?php endif; ?>
</table>