|
|
@@ -27,6 +27,7 @@ use common\helpers\Date;
|
|
|
use common\helpers\Form;
|
|
|
use common\helpers\http\BackendToFrontendApi;
|
|
|
use common\helpers\Log;
|
|
|
+use common\helpers\LoggerTool;
|
|
|
use common\helpers\NetPoint;
|
|
|
use common\helpers\Tool;
|
|
|
use common\helpers\user\Balance;
|
|
|
@@ -146,6 +147,10 @@ class UserController extends BaseController
|
|
|
$condition = $filter['condition'];
|
|
|
$params = $filter['params'];
|
|
|
$condition .= ' AND UI.DELETED=0 ';
|
|
|
+
|
|
|
+ $adminId = Yii::$app->getUser()->getUserInfo()['id'];
|
|
|
+ LoggerTool::info('AdminID : ' . $adminId);
|
|
|
+
|
|
|
$listObj = new IndexList();
|
|
|
$data = $listObj->getList(['condition' => $condition, 'params' => $params]);
|
|
|
return static::notice($data);
|