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

@@ -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)]);
}