1、豆包新增生成图片功能

2、消息优化
3、场景获客新增全局配置
4、工作台新增全局配置
This commit is contained in:
wong
2026-01-15 14:31:12 +08:00
parent 1566f8fb7c
commit a20794366a
17 changed files with 1287 additions and 158 deletions

View File

@@ -287,6 +287,13 @@ class GetAddFriendPlanDetailV1Controller extends Controller
$newData['messagePlans'] = $msgConf;
$newData = array_merge($newData, $sceneConf, $reqConf, $tagConf, $plan);
// 确保 planType 有默认值0=全局1=独立默认1
if (!isset($newData['planType'])) {
$newData['planType'] = 1;
} else {
$newData['planType'] = intval($newData['planType']);
}
// 移除不需要的字段
unset(
$newData['sceneConf'],