|
@@ -58,6 +58,7 @@ class Audit extends BaseController
|
|
|
[
|
|
[
|
|
|
['page', 1],
|
|
['page', 1],
|
|
|
['keyword',''],
|
|
['keyword',''],
|
|
|
|
|
+ ['mobile',''],
|
|
|
['status', ''],
|
|
['status', ''],
|
|
|
['uid', ''],
|
|
['uid', ''],
|
|
|
['time',[]],
|
|
['time',[]],
|
|
@@ -70,6 +71,9 @@ class Audit extends BaseController
|
|
|
if(is_numeric($post['uid']) && $post['uid']>0) {
|
|
if(is_numeric($post['uid']) && $post['uid']>0) {
|
|
|
$where[]=["t.uid","=",(int)$post['uid']];
|
|
$where[]=["t.uid","=",(int)$post['uid']];
|
|
|
}
|
|
}
|
|
|
|
|
+ if(is_mobile($post['mobile'])) {
|
|
|
|
|
+ $where[]=["t.mobile","=",$post['mobile']];
|
|
|
|
|
+ }
|
|
|
$startTime = "";
|
|
$startTime = "";
|
|
|
$endTime = "";
|
|
$endTime = "";
|
|
|
if(!empty($post['time'][0]) && !empty($post['time'][1])) {
|
|
if(!empty($post['time'][0]) && !empty($post['time'][1])) {
|