|
|
|
@ -35,6 +35,7 @@ class MendController extends ThinkController {
|
|
|
|
|
* 补链记录
|
|
|
|
|
* @param integer $p 分页
|
|
|
|
|
* @param booble IS_POST post请求时为下一页ajax请求
|
|
|
|
|
* @param booble export 是否导出
|
|
|
|
|
* @return void
|
|
|
|
|
*/
|
|
|
|
|
public function recordList($p=1,$export=false)
|
|
|
|
@ -46,13 +47,18 @@ class MendController extends ThinkController {
|
|
|
|
|
} else {
|
|
|
|
|
$row = 10;
|
|
|
|
|
}
|
|
|
|
|
if(isset($_REQUEST['account'])){
|
|
|
|
|
if ($_REQUEST['account']=='全部') {
|
|
|
|
|
unset($_REQUEST['account']);
|
|
|
|
|
}
|
|
|
|
|
$map['user_account']=array('like','%'.$_REQUEST['account'].'%');
|
|
|
|
|
unset($_REQUEST['account']);
|
|
|
|
|
if(isset($_REQUEST['account'])) $map['user_account']=array('like','%'.$_REQUEST['account'].'%');
|
|
|
|
|
if(isset($_REQUEST['promote_account'])) $map['promote_account']=array('like','%'.$_REQUEST['promote_account'].'%');
|
|
|
|
|
if(isset($_REQUEST['promote_account_to'])) $map['promote_account_to']=array('like','%'.$_REQUEST['promote_account_to'].'%');
|
|
|
|
|
if(isset($_REQUEST['op_account'])) $map['op_account']=array('like','%'.$_REQUEST['op_account'].'%');
|
|
|
|
|
if (isset($_REQUEST['time_start']) && isset($_REQUEST['time_end'])) {
|
|
|
|
|
$map['order_time'] = ['between', [strtotime($_REQUEST['time_start']), strtotime($_REQUEST['time_end']) + 86399]];
|
|
|
|
|
} elseif (isset($_REQUEST['time_start'])) {
|
|
|
|
|
$map['order_time'] = ['GT', strtotime($_REQUEST['time_start'])];
|
|
|
|
|
} elseif (isset($_REQUEST['time_end'])) {
|
|
|
|
|
$map['order_time'] = ['LT', strtotime($_REQUEST['time_end']) + 86399];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$data = M("Mend","tab_")
|
|
|
|
|
->field("user_account,promote_account,promote_account_to,order_time,create_time,op_account,remark")
|
|
|
|
|
->where($map)
|
|
|
|
|