You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
information-system/application/views/analytics/order_detail.php

64 lines
2.9 KiB
PHTML

<div id="maincon" class="analytics">
<?php echo $menu; ?>
<div id="rightcon">
<div class="title"> <h2 class="edit">订单信息 #<?php echo $detail->v_order_num; ?></h2></div>
<div class="view_log_box clear">
<table width="100%" border=0 cellpadding="0" cellspacing="0">
<thead></thead>
<tbody>
<tr>
<td>订单号:</td>
<td><?php echo $detail->v_order_num; ?></td>
</tr>
<tr>
<td>订单名称:</td>
<td><?php echo $confirm_info->COLI_Name; ?></td>
</tr>
<tr>
<td>网站:</td>
<td><?php echo $detail->v_site_code; ?></td>
</tr>
<tr>
<td>订单时间:</td>
<td><?php echo date('Y-m-d H:i:s', $detail->v_datetime); ?></td>
</tr>
<tr>
<td>预定IP:</td>
<td><?php echo $detail->v_user_ip; ?></td>
</tr>
<tr>
<td>预定信息:</td>
<td><?php echo nl2br($confirm_info->COLI_OrderDetailText); ?></td>
</tr>
<tr>
<td>首访地址信息:</td>
<td>
作者: <?php echo $page->p_author; ?>
<br/>
地址: <a target="_blank" href="<?php echo $page->p_url; ?>"><?php echo $page->p_url; ?></a>
</td>
</tr>
<tr>
<td>访客访问记录:</td>
<td>
<ol>
<?php if (isset($history)): ?>
<?php foreach ($history as $h): ?>
<li>
<p><strong>地址:</strong> <a href="<?php echo $h->p_url; ?>" target="_blank"><?php echo $h->p_url; ?> - ( 作者: <?php echo $h->p_author; ?> )</a></p>
<p><strong>时间: </strong> <?php echo date('Y-m-d H:i:s', $h->h_datetime); ?></p>
</li>
<?php endforeach; ?>
<?php endif; ?>
</ol>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="clear"></div>
</div>