master
yulingwei 5 years ago
parent b10717e8b6
commit f34975478b

@ -8556,6 +8556,10 @@ class ExportController extends Controller
if (I('user_account')) {
$map['u.account'] = I('user_account');
}
if (I('type')) {
$map['pdl.type'] = I('type');
}
if ($startTime = I('create_time_start')) {

@ -1238,6 +1238,10 @@ class StatisticsController extends ThinkController {
if (I('user_account')) {
$map['u.account'] = I('user_account');
}
if (I('type')) {
$map['pdl.type'] = I('type');
}
if ($startTime = I('create_time_start')) {
$startTime = strtotime($startTime);

@ -75,6 +75,14 @@
<div class="input-list">
<input type="text" id='user_account' name='user_account' value="{:I('user_account')}" placeholder="玩家账号">
</div>
<div class="input-list input-list-game search_label_rehab">
<select id="type" class="select_gallery promote-id" name="type" data-title="会长账号">
<option value="">类型</option>
<?php foreach($types as $index => $item):?>
<option value="{$index}" <?php if (I('type') == $index):?>selected<?php endif;?> >{$item}</option>
<?php endforeach;?>
</select>
</div>
<div class="input-list">
<a class="sch-btn" href="javascript:;" id="search"
url="{:U('Statistics/packuserdownload','model='.$model['name'] . '&row=' . I('row'),false)}">

Loading…
Cancel
Save