|
@@ -117,13 +117,13 @@ class merchant_infoControl extends SystemControl
|
|
|
$mod = Model('merchant_evidence');
|
|
|
$condition = [];
|
|
|
if (trim($_GET['company_name']) != '') {
|
|
|
- $condition['company_name'] = $_GET['company_name'];
|
|
|
+ $condition['company_name'] = ['like', '%' . $_GET['company_name'] . '%'];
|
|
|
}
|
|
|
if (trim($_GET['to_bank_username']) != '') {
|
|
|
- $condition['to_bank_username'] = $_GET['to_bank_username'];
|
|
|
+ $condition['to_bank_username'] = ['like', '%' . $_GET['to_bank_username'] . '%'];
|
|
|
}
|
|
|
if (trim($_GET['to_bank_name']) != '') {
|
|
|
- $condition['to_bank_name'] = $_GET['to_bank_name'];
|
|
|
+ $condition['to_bank_name'] = ['like', '%' . $_GET['to_bank_name'] . '%'];
|
|
|
}
|
|
|
$start_unixtime = intval(strtotime($_GET['query_start_time']));
|
|
|
$end_unixtime = intval(strtotime($_GET['query_end_time']));
|