Initial commit: TradeMate 外贸小助手 MVP

项目结构:
- backend/     Python FastAPI 后端
- uni-app/     uni-app跨端前端
- docs/        设计文档
- docker-compose.yml  Docker编排
- nginx/scripts/systemd 运维配置

已完成功能:
- 用户认证 (JWT)
- 智能翻译 + 回复建议
- 营销素材生成
- 客户管理 + 沉默检测
- 报价单管理
- 产品库管理
- 汇率换算
- 推送通知 (uni-push)
- WhatsApp Webhook框架
- Celery定时任务
This commit is contained in:
TradeMate Dev
2026-05-08 18:17:12 +08:00
commit c6206787da
121 changed files with 11743 additions and 0 deletions
+53
View File
@@ -0,0 +1,53 @@
{
"pages": [
{
"path": "pages/login/login",
"style": {
"navigationStyle": "custom",
"navigationBarTitleText": "登录"
}
},
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "外贸小助手"
}
},
{
"path": "pages/translate/translate",
"style": {
"navigationBarTitleText": "智能翻译"
}
},
{
"path": "pages/customers/customers",
"style": {
"navigationBarTitleText": "客户管理"
}
},
{
"path": "pages/marketing/marketing",
"style": {
"navigationBarTitleText": "营销素材"
}
},
{
"path": "pages/quotation/quotation",
"style": {
"navigationBarTitleText": "报价单"
}
},
{
"path": "pages/product/product",
"style": {
"navigationBarTitleText": "产品库"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "white",
"navigationBarTitleText": "外贸小助手",
"navigationBarBackgroundColor": "#1890ff",
"backgroundColor": "#f5f5f5"
}
}