Ver Fonte

userCompanyBasic列表接口默认查level2和level3的接口

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

+ 2 - 2
app/controller/UserCompanyBasic.php

@@ -16,13 +16,13 @@ class UserCompanyBasic extends BaseController
     //列表
     public function getList()
     {
-        $post = $this->request->only(['nickname' => '', 'username' => '', 'status' => '', 'page' => 1, 'size' => 10, 'islevel' => 1,'level'=>'2','companyNo'=>''], 'post');
+        $post = $this->request->only(['nickname' => '', 'username' => '', 'status' => '', 'page' => 1, 'size' => 10, 'islevel' => 1,'level'=>'2,3','companyNo'=>''], 'post');
         $condition = [['a.is_del', '=', 0]];
 
         if ($post['nickname'] != '') $condition[] = ['nickname', 'like', "%{$post['nickname']}%"];
         if ($post['username'] != '') $condition[] = ['username', 'like', "%{$post['username']}%"];
         if ($post['status'] != '') $condition[] = ['a.status', '=', $post['status']];
-        if ($post['level'] != '') $condition[] = ['a.level', '=', $post['level']];
+        if ($post['level'] != '') $condition[] = ['a.level', 'in', $post['level']];
 //        if ($post['islevel'] == 1) $condition[] = ['a.level', '=', 1];
 //        else $condition[] = ['a.level', '<>', 1];
         if ($post['companyNo'] !== '') {