#418 在已收到的申请中添加了申请收到时间的显示

This commit is contained in:
Li Jianxuan 2012-12-06 08:42:00 +00:00
parent 3ac3b52617
commit d312f8afe0
1 changed files with 3 additions and 1 deletions

View File

@ -46,7 +46,9 @@
<li id="list_<?php echo $item['id'];?>">
<p>
<a href="mailto:<?= $item['email']; ?>?subject=答复数据申请问题"><?= $item['username']; ?></a> |
申请时间:<?= date('Y-m-d',strtotime($item['ts_created'])); ?></p>
申请时间:<?= date('Y-m-d',strtotime($item['ts_created'])); ?>
<?php if(!empty($item['ts_received'])) echo " | 收到时间:".date('Y-m-d',strtotime($item['ts_received']));?>
</p>
<p>
单位:<?= $item['unit']; ?> |
地址:<?= $item['address']; ?> |