feat: 完善对话功能,自动设置默认模型账户并优化界面布局

This commit is contained in:
DEV_DSW
2026-04-14 20:54:54 +08:00
parent c61e41049f
commit fbec7088c6
11 changed files with 39 additions and 50 deletions

View File

@@ -5,17 +5,10 @@ export interface taskCenterItem {
desc: string,
id: string,
icon: string,
type: 'sale' | 'close' | 'open' | 'channel'
type?: 'channel'
}
export const taskCenterList: taskCenterItem[] = [
{
title: '每日销售数据',
desc: '分析用于销售渠道每日数据汇总及简要展示',
id: uuidv4(),
icon: '销',
type: 'sale'
},
{
title: '一键打开各渠道',
desc: '人工账号登录,为自动化操作做好准备',
@@ -24,17 +17,9 @@ export const taskCenterList: taskCenterItem[] = [
type: 'channel'
},
{
title: '渠道房型',
desc: '关闭销售渠道下的指定房型',
title: '渠道房型',
desc: '销售渠道下的指定房型,管理开关房型',
id: uuidv4(),
icon: '',
type: 'close'
},
{
title: '开渠道房型',
desc: '开启销售渠道下的指定房型',
id: uuidv4(),
icon: '开',
type: 'open'
icon: ''
},
]