From cab785f42b9230f29603092f3453f791155b8b35 Mon Sep 17 00:00:00 2001 From: weiz <736250432@qq.com> Date: Sat, 20 Jan 2024 15:51:01 +0800 Subject: [PATCH] update --- app/adminapi/lists/custom/CustomContactsLists.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/adminapi/lists/custom/CustomContactsLists.php b/app/adminapi/lists/custom/CustomContactsLists.php index 470358a82..ef37299d0 100644 --- a/app/adminapi/lists/custom/CustomContactsLists.php +++ b/app/adminapi/lists/custom/CustomContactsLists.php @@ -68,11 +68,12 @@ class CustomContactsLists extends BaseAdminDataLists implements ListsSearchInter ->limit($this->limitOffset, $this->limitLength) ->order(['id' => 'desc']) ->select()->each(function($item){ - $custom = Custom::field('org_id,dept_id')->where('id',$item['custom_id'])->findOrEmpty(); + $custom = Custom::field('org_id,dept_id,name')->where('id',$item['custom_id'])->findOrEmpty(); $org = Orgs::field('name')->where('id',$custom['org_id'])->findOrEmpty(); $dept = Dept::field('name')->where('id',$custom['dept_id'])->findOrEmpty(); $item['org_name'] = $org['name']; $item['dept_name'] = $dept['name']; + $item['custom_name'] = $custom['name']; unset($item['custom_id']); return $item; })