私域操盘手 - 修复设备列表数据插入错误的问题

This commit is contained in:
柳清爽
2025-05-10 10:22:55 +08:00
parent c09864ee89
commit 556d0ae977

View File

@@ -108,10 +108,10 @@ class GetDeviceListV1Controller extends BaseController
$sections['totalFriend'] = WechatFriendModel::where(['ownerWechatId' => $item->wechatId])->count();
}
array_push($result, $sections);
array_push($resultSets, $sections);
}
return $result;
return $resultSets;
}
/**