|
...
|
...
|
@@ -88,12 +88,9 @@ class ProjectAssociationController extends BaseController |
|
|
|
$cache = isset($cache);
|
|
|
|
$search = request()->input('search');
|
|
|
|
// $result = ProjectAssociationServices::getInstance()->getAiccWechatLists($isRes, $app, $cache);
|
|
|
|
$result = ProjectAssociationServices::getInstance()->getWorkChatRoomList($search);
|
|
|
|
$result = ProjectAssociationServices::getInstance()->getWorkChatRoomList($search, $isRes->friend_id);
|
|
|
|
$result['info'] = [
|
|
|
|
'friend_id' => $isRes->friend_id ?? 0,
|
|
|
|
'nickname' => $isRes->nickname ?? '',
|
|
|
|
'user_name' => $isRes->user_name ?? '',
|
|
|
|
'image' => $isRes->image ?? '',
|
|
|
|
'friend_id' => $isRes->friend_id ?? 0
|
|
|
|
];
|
|
|
|
$this->response('success', Code::SUCCESS, $result);
|
|
|
|
}
|
...
|
...
|
|