Commit 7280e223 by 冷斌

fix bug

parent 9a960dc0
<admintpl file="header" /> <admintpl file="header" />
</head> </head>
<body> <body>
<div class="wrap js-check-wrap"> <div class="wrap js-check-wrap">
<ul class="nav nav-tabs"> <ul class="nav nav-tabs">
<li class="active"><a href="{:U('Gather/index')}">列表</a></li> <li class="active"><a href="{:U('Gather/index')}">列表</a></li>
<if condition="$isshow"> <if condition="$isshow">
<li><a href="{:U('Gather/add')}">添加</a></li> <li><a href="{:U('Gather/add')}">添加</a></li>
</if> </if>
</ul> </ul>
<form class="well form-search" method="post" action="{:U('Gather/index')}"> <form class="well form-search" method="post" action="{:U('Gather/index')}">
代理、推广员、主播:
<input type="text" name="keyword" style="width: 200px;" value="{$formget.keyword}" placeholder="请输入用户名、昵称..."> 类型:
时间段: <select class="select_2" name="type" id="four">
<input type="text" name="start_time" class="js-date date" id="start_time" value="{$formget.start_time}" style="width: 80px;" autocomplete="off">- <volist name="types" id="v">
<input type="text" class="js-date date" name="end_time" id="end_time" value="{$formget.end_time}" style="width: 80px;" autocomplete="off"> &nbsp; &nbsp; <option value="{$v['type']}" <if condition="$formget.type eq $v['type']">selected</if>>{$v['name']}</option>
<input type="submit" class="btn btn-primary" value="搜索"> </volist>
<div style="margin-top:10px"> </select>
{$date}数据统计 (根据筛选条件统计) 时间段:
<span style="color:red;font-size: 17px;"> <input type="text" name="start_time" class="js-date date" id="start_time" value="{$formget.start_time}" style="width: 80px;" autocomplete="off">-
<input type="text" class="js-date date" name="end_time" id="end_time" value="{$formget.end_time}" style="width: 80px;" autocomplete="off"> &nbsp; &nbsp;
<input type="submit" class="btn btn-primary" value="搜索">
<div style="margin-top:10px">
{$date}月数据统计 (根据筛选条件统计)
<span style="color:red;font-size: 17px;">
普客总充值:¥{$_total_charge} 普客总充值:¥{$_total_charge}
普客刷礼(钻石):{$total_coin} 普客刷礼(萌豆):{$total_coin}
</span> </span>
</div> </div>
<if condition="$my eq 1"> </form>
<div style="margin-top:10px"> <table class="table table-hover table-bordered">
注册人数:{$my_total_reg} <thead>
充值金额:{$my_total_charge} <tr>
充值人数:{$my_total_charge_num} <th width="50">ID</th>
自客自销(钻石):{$mysolt1} <th>角色</th>
他客自销(钻石):{$mysolt3} <th>账号</th>
自客他销(钻石):{$mysolt2} <th>昵称</th>
</div> <th>手机</th>
</if> <th>注册人数</th>
<th>充值金额</th>
<th>充值人数</th>
</form> <th>守护金额(萌币)</th>
<table class="table table-hover table-bordered"> <th>商城消费(萌币)</th>
<thead> <th>自客自销(萌币)</th>
<tr> <th>他客自销(萌币)</th>
<th width="50">ID</th> <th>自客他销(萌币)</th>
<th>角色</th> </tr>
<th>账号</th> </thead>
<th>昵称</th> <tbody>
<th>手机</th> <php>$user_statuses=array("0"=>L('已拉黑'),"1"=>'正常',"2"=>'未验证');</php>
<th>注册人数</th> <foreach name="users" item="vo">
<th>充值金额</th> <tr>
<th>充值人数</th> <td>{$vo.id}</td>
<th>守护金额(钻石)</th> <td>{$vo.rbac}</td>
<th>商城消费(钻石)</th> <td>{$vo.user_login}</td>
<th>自客自销(钻石)</th> <td>{$vo.user_nicename}</td>
<th>他客自销(钻石)</th> <td>{$vo.mobile}</td>
<th>自客他销(钻石)</th> <td>{$vo.total_reg}</td>
</tr> <td>{$vo.total_charge}</td>
</thead> <td>{$vo.total_charge_num}</td>
<tbody> <td>{$vo.guardcoin}</td>
<php>$user_statuses=array("0"=>L('已拉黑'),"1"=>'正常',"2"=>'未验证');</php> <td>{$vo.mallcoin}</td>
<foreach name="users" item="vo"> <td>{$vo.solt1}</td>
<tr> <td>{$vo.solt3}</td>
<td>{$vo.id}</td> <td>{$vo.solt2}</td>
<td>{$vo.rbac}</td> <!-- <td>{$vo.test}</td>
<td>{$vo.user_login}</td> <td>{$vo.test2}</td> -->
<td>{$vo.user_nicename}</td> </tr>
<td>{$vo.mobile}</td> </foreach>
<td>{$vo.total_reg}</td> </tbody>
<td>{$vo.total_charge}</td> </table>
<td>{$vo.total_charge_num}</td> <div class="pagination">{$page}</div>
<td>{$vo.total_coin}</td> </div>
<td>{$vo.total_votes}</td> <script src="__PUBLIC__/js/common.js"></script>
<td>{$vo.solt1}</td> <script type="text/javascript">
<td>{$vo.solt3}</td> </script>
<td>{$vo.solt2}</td>
<!-- <td>{$vo.test}</td> -->
</tr>
</foreach>
</tbody>
</table>
<div class="pagination">{$page}</div>
</div>
<script src="__PUBLIC__/js/common.js"></script>
</body> </body>
</html> </html>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment