Commit 1ec20015 authored by clone's avatar clone

bug

parent 83e3a492
...@@ -124,17 +124,17 @@ class User extends Basic ...@@ -124,17 +124,17 @@ class User extends Basic
if (empty($userList)) { if (empty($userList)) {
return $this->response("200", "此条件没有找到数据"); return $this->response("200", "此条件没有找到数据");
} }
$clientService = new ClientService(); /* $clientService = new ClientService();
$list = []; $list = [];
foreach ($userList as $k => $v) { foreach ($userList as $k => $v) {
$is_show = $clientService->dialTotal($v["user_id"]); $is_show = $clientService->dialTotal($v["user_id"]);
if ($is_show) { if ($is_show) {
array_push($list, $v); array_push($list, $v);
} }
} }*/
$vip_services = new VipService(); $vip_services = new VipService();
$data['examine_vip'] = $vip_services->vip($this->agentId); $data['examine_vip'] = $vip_services->vip($this->agentId);
$data['user_date'] = $list; $data['user_date'] = $userList;
return $this->response("200", 'request success', $data); return $this->response("200", 'request success', $data);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment