|
@@ -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'] !== '') {
|