From 8f4289f48f1cd32f44878ad5b25e8a38b5c8a0d4 Mon Sep 17 00:00:00 2001 From: mkm <727897186@qq.com> Date: Mon, 1 Jul 2024 18:16:04 +0800 Subject: [PATCH] =?UTF-8?q?feat(UserLists):=20=E6=A0=B9=E6=8D=AE=E8=A1=97?= =?UTF-8?q?=E9=81=93=E4=BF=A1=E6=81=AF=E4=BF=AE=E6=94=B9=E6=90=9C=E7=B4=A2?= =?UTF-8?q?=E6=9D=A1=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/store/lists/user/UserLists.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/store/lists/user/UserLists.php b/app/store/lists/user/UserLists.php index 898bf2f5e..17e5a156d 100644 --- a/app/store/lists/user/UserLists.php +++ b/app/store/lists/user/UserLists.php @@ -43,7 +43,8 @@ class UserLists extends BaseAdminDataLists implements ListsSearchInterface if($street){ $uid=UserAddress::where('street',$street)->group('uid')->column('uid'); if($uid){ - $this->searchWhere=['uid','=',$uid]; + $this->searchWhere=[]; + $this->searchWhere[]=['id','in',$uid]; }else{ return []; }