Ver Fonte

userlistbycompany接口优化

wufeng há 2 anos atrás
pai
commit
2ef338b119
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      app/controller/UserInfo.php

+ 2 - 2
app/controller/UserInfo.php

@@ -316,7 +316,7 @@ class UserInfo extends BaseController
     //根据业务公司获取用户数据
     public function UserListByCompany()
     {
-        $post = $this->request->only(["nickname" => "", "username" => "", "status" => "", "uid" => [], "nuid" => [], "companyNo" => "", "page" => 1, "size" => 10, 'islevel' => '', 'level' => ''], "post");
+        $post = $this->request->only(["nickname" => "", "username" => "", "status" => "", "uid" => [], "nuid" => [], "companyNo" => "", "page" => 1, "size" => 10, 'level' => ''], "post");
         $condition = [["a.is_del", "=", 0]];
         $whereor = [];
         isset($post['nickname']) && $post['nickname'] != "" ? $condition[] = ["nickname", "like", "%{$post['nickname']}%"] : "";
@@ -325,7 +325,7 @@ class UserInfo extends BaseController
         isset($post['uid']) && !empty($post['uid']) && !empty($post['uid']) ? $condition[] = ["a.id", "in", $post['uid']] : "";
         isset($post['nuid']) && !empty($post['nuid']) && !empty($post['nuid']) ? $condition[] = ["a.id", "not in", $post['nuid']] : "";
         isset($post['companyNo']) && $post['companyNo'] !== "" ? $condition[] = ["c.companyCode", "=", $post['companyNo']] : $whereor[] = ["c.companyCode", "=", null];
-        if ($post['islevel'] !== '') $condition[] = ['a.level', '=', $post['level']];
+        if ($post['level'] !== '') $condition[] = ['a.level', '=', $post['level']];
 
         $page = isset($post['page']) && $post['page'] !== "" ? intval($post['page']) : 1;
         $size = isset($post['size']) && $post['size'] !== "" ? intval($post['size']) : 10;