feat: 增加'store_id'和'user_ship'搜索条件

This commit is contained in:
mkm 2024-07-20 16:31:11 +08:00
parent f216d693ee
commit 1fdedb2bc7

View File

@ -23,7 +23,7 @@ class UserLists extends BaseAdminDataLists implements ListsExcelInterface
*/
public function setSearch(): array
{
$allowSearch = ['keyword', 'channel', 'create_time_start', 'create_time_end'];
$allowSearch = ['keyword', 'channel', 'create_time_start', 'create_time_end','store_id','user_ship'];
return array_intersect(array_keys($this->params), $allowSearch);
}