fansrange.html
2.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{template 'common/header'}
<ul class="nav nav-tabs">
<li {if $op == 'salereport'}class="active"{/if}><a href="{php echo $this->createWebUrl('statistics', array('op' => 'salereport'))}">零售生意报告</a></li>
<li {if $op == 'orderstatistics' }class="active"{/if}><a href="{php echo $this->createWebUrl('statistics', array('op' => 'orderstatistics'))}">订单统计</a></li>
<li {if $op == 'saledetails' }class="active"{/if}><a href="{php echo $this->createWebUrl('statistics', array('op' => 'saledetails'))}">商品销售明细</a></li>
<li {if op == 'saletargets' }class="active"{/if}><a href="{php echo $this->createWebUrl('statistics', array('op' => 'saletargets'))}">销售指标分析</a></li>
<li {if $op == 'productsaleranking' }class="active"{/if}><a href="{php echo $this->createWebUrl('statistics', array('op' => 'productsaleranking'))}">商品销售排行</a></li>
<li {if $op == 'productsalestatistics'}class="active"{/if}><a href="{php echo $this->createWebUrl('statistics', array('op' => 'productsalestatistics'))}">商品访问与购买比</a></li>
<li {if $op == 'memberranking' }class="active"{/if}><a href="{php echo $this->createWebUrl('statistics', array('op' => 'memberranking'))}">会员消费排行</a></li>
<li {if $op == 'fansrange' }class="active"{/if}><a href="{php echo $this->createWebUrl('statistics', array('op' => 'fansrange'))}">代理粉丝排行</a></li>
<li {if $op == 'userincreasestatistics'&&$usertype=='user' }class="active"{/if}><a href="{php echo $this->createWebUrl('statistics', array('op' => 'userincreasestatistics'))}">会员增长统计</a></li>
<li {if $op == 'userincreasestatistics'&&$usertype=='agent' }class="active"{/if}><a href="{php echo $this->createWebUrl('statistics', array('op' => 'userincreasestatistics','usertype'=>'agent'))}">代理增长统计</a></li>
</ul>
<div class="main">
<div class="panel panel-default">
<div class="panel-heading">代理粉丝排行</div>
<div class="panel-body">
<div class="form-group">
<table class="table table-hover">
<thead class="navbar-inner">
<tr>
<th style="width:10%;">排行</th>
<th style="width:20%;">会员</th>
<th style="width:10%;">等级</th>
<th style="width:10%;">代理数</th>
</tr>
</thead>
<tbody>
{php $index=1}
{loop $list $item}
<tr>
<td>
{$index} {if $index==1||$index==2||$index==3}
<img src="{WWX_FXXT_ROOT}/recouse/images/000{$index}.gif" style="border-width:0px;">
{/if}{php $index++}
</td>
<td>{$item['realname']}</td>
<td>{php echo $this->getLevel($item['id'],1)}</td>
<td>{$item['flagcount']}</td>
</tr>
{/loop}
</tbody>
</table>
{$pager}
</div>
</div>
</div>
</div>
{template 'common/footer'}