chore: restructure project and add i18n support

- Reorganize project structure with new electron and shared directories
- Add comprehensive i18n support with Chinese, English, and Japanese locales
- Update build configurations and TypeScript paths for new structure
- Add various UI components including chat interface and task management
- Include Windows release binaries and localization files
- Update dependencies and fix import paths throughout the codebase
This commit is contained in:
duanshuwen
2026-04-06 14:39:06 +08:00
parent e76b034d50
commit 6615d11dd6
311 changed files with 823682 additions and 4460 deletions

View File

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