This commit is contained in:
2025-03-29 14:00:36 +08:00
parent 744815db87
commit 54e1e0c937
9 changed files with 18 additions and 18 deletions

View File

@@ -9,7 +9,7 @@
namespace app\admin\controller;
use app\api\logic\GechatroomLogic;
use app\api\logic\GechatroomWechatLogic;
use think\Controller;
class Gechatroom extends Controller
@@ -37,7 +37,7 @@ class Gechatroom extends Controller
if(empty($ai_config_id)){
throw new \Exception('ai_config_id不能为空');
}
$logic = new GechatroomLogic();
$logic = new GechatroomWechatLogic();
$data = $logic->getChatroomList($ai_config_id);
//dump($data);die;
//缓存群成员列表
@@ -65,7 +65,7 @@ class Gechatroom extends Controller
if(empty($ai_config_id)){
throw new \Exception('ai_config_id不能为空');
}
$data = (new GechatroomLogic())->getChatroomList($ai_config_id);
$data = (new GechatroomWechatLogic())->getChatroomList($ai_config_id);
//缓存群成员列表
cache('cache_getChatroomList_data'.session_admin_firm_id(),$data['memberList'],86400);
$memberList = $data[$chatroom_id]['memberList'];

View File

@@ -9,7 +9,7 @@
namespace app\admin\controller;
use app\api\logic\GewechatFriendsLogic;
use app\api\logic\GewechatFriendsWechatLogic;
use think\Controller;
class Gewechatfriends extends Controller
@@ -32,7 +32,7 @@ class Gewechatfriends extends Controller
$data = cache('cache_getFriendDetailList_data'.session_admin_firm_id());
return json(['list' => $data, 'total' => count($data)]);
}
$obj_logic = new GewechatFriendsLogic();
$obj_logic = new GewechatFriendsWechatLogic();
$ai_config_id = input('ai_config_id');
if(empty($ai_config_id)){
throw new \Exception('请先配置AI客服');
@@ -54,7 +54,7 @@ class Gewechatfriends extends Controller
$data = cache('cache_getFriendDetailList_data'.session_admin_firm_id());
return json(['list' => $data, 'total' => count($data)]);
}
$obj_logic = new GewechatFriendsLogic();
$obj_logic = new GewechatFriendsWechatLogic();
$ai_config_id = input('ai_config_id');
$obj_logic->setBaseUrlByAiCustmerConfig($ai_config_id);
$res = $obj_logic->getFriendDetailList();

View File

@@ -9,7 +9,7 @@
namespace app\admin\controller;
use app\api\logic\PersonalLogic;
use app\api\logic\PersonalWechatLogic;
use think\Controller;
use wanghua\general_utility_tools_php\tool\Tools;
@@ -21,7 +21,7 @@ class Wxperson extends Controller
public function getProfile()
{
Tools::log_to_write_txt(['查询个人信息,入参:'=>input()]);
$logic = new PersonalLogic();
$logic = new PersonalWechatLogic();
$base_url = input('base_url');
if(empty($base_url)){
throw new \Exception('请先配置AI客服');

View File

@@ -4,7 +4,7 @@ namespace app\admin\controller\auth;
use app\admin\model\AuthGroup;
use app\admin\model\AuthGroupAccess;
use app\api\logic\GewechatFriendsLogic;
use app\api\logic\GewechatFriendsWechatLogic;
use app\common\controller\Backend;
use fast\Random;
use fast\Tree;
@@ -299,7 +299,7 @@ class Admin extends Backend
}
function getRelWxids(){
$friends = (new GewechatFriendsLogic())->getFriendDetailList();
$friends = (new GewechatFriendsWechatLogic())->getFriendDetailList();
return json(['data'=>$friends,'total'=>count($friends)]);
}