This commit is contained in:
weiz 2024-01-02 17:24:06 +08:00
parent f64d31d6e4
commit 91ee52f77e
3 changed files with 4 additions and 3 deletions

View File

@ -42,6 +42,7 @@ class CustomContactsLists extends BaseAdminDataLists implements ListsSearchInter
{
return [
'%like%' => ['name', 'position', 'phone', 'telephone', 'email'],
'=' => ['custom_id']
];
}

View File

@ -41,7 +41,7 @@ class CustomFollowLists extends BaseAdminDataLists implements ListsSearchInterfa
{
return [
'%like%' => ['name', 'contacts', 'executor'],
'=' => ['types']
'=' => ['custom_id','types']
];
}

View File

@ -74,8 +74,8 @@ class CustomLists extends BaseAdminDataLists implements ListsSearchInterface
$item['follow_total'] = CustomFollow::where('custom_id', $item['id'])->count();
$item['add_user_name'] = $admin['name'];
$item['province_name'] = $province['province_name'];
$item['city_name'] = $province['city_name'];
$item['area_name'] = $province['area_name'];
$item['city_name'] = $city['city_name'];
$item['area_name'] = $area['area_name'];
unset($item['province'],$item['add_user']);
return $item;
})