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/mine.php

41 lines
1.8 KiB
PHTML

<div id="maincon" class="analytics">
<?php echo $menu; ?>
<div id="rightcon">
<div class="title"> <h2 class="edit">我的统计</h2></div>
<div class="view_log_box clear">
<table width="100%" border=0 cellpadding="0" cellspacing="0">
<thead></thead>
<tbody>
<tr>
<td>今日订单: </td>
<td>
<a href="<?php echo site_url('analytics?author='.$author . '&start=' . $day_begin . '&end=' . $day_end); ?>" target="_blank"><?php echo $count_order_day; ?></a>
</td>
<td>今日访问: </td>
<td><?php echo $count_visit_day; ?></td>
</tr>
<tr>
<td>本月订单: </td>
<td>
<a href="<?php echo site_url('analytics?author='.$author . '&start=' . $month_begin . '&end=' . $month_end); ?>" target="_blank"><?php echo $count_order_month; ?></a>
</td>
<td>本月访问: </td>
<td><?php echo $count_visit_month; ?></td>
</tr>
<tr>
<td>本年订单: </td>
<td>
<a href="<?php echo site_url('analytics?author='.$author . '&start=' . $year_begin . '&end=' . $year_end); ?>" target="_blank"><?php echo $count_order_year; ?></a>
</td>
<td>本年访问: </td>
<td><?php echo $count_visit_year; ?></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="clear"></div>
</div>