Files
makemd/dashboard/.umirc.ts
wurenzhi e47beffaf9 feat: 重构前端代码结构并添加Java后端支持
- 重构前端导入和组件结构,优化代码组织
- 添加Java后端基础框架和API实现
- 修复类型定义和接口兼容性问题
- 新增测试页面和工具函数
- 优化国际化支持和错误处理
- 更新依赖配置和构建脚本

新增Java后端模块:
- 实现基础认证、订单、支付等服务
- 添加Swagger API文档支持
- 配置数据库连接和缓存
- 实现国际化消息处理
- 添加安全过滤器和限流控制
2026-03-30 16:51:18 +08:00

351 lines
9.9 KiB
TypeScript

import { defineConfig } from 'umi';
export default defineConfig({
define: {
'process.env.REACT_APP_USE_MOCK': process.env.REACT_APP_USE_MOCK || 'true',
'process.env.REACT_APP_API_BASE_URL': process.env.REACT_APP_API_BASE_URL || 'http://localhost:3001',
'process.env.REACT_APP_REDUX_DEVTOOLS': process.env.REACT_APP_REDUX_DEVTOOLS || 'true',
'process.env.REACT_APP_MSW_DEBUG': process.env.REACT_APP_MSW_DEBUG || 'true',
},
routes: [
{
path: '/',
component: '@/pages/Auth/LoginPage',
exact: true,
},
{
path: '/test-simple',
component: '@/pages/TestPage',
exact: true,
},
{
path: '/home',
component: '@/pages/Homepage',
exact: true,
},
{
path: '/test-route',
component: '@/pages/TestRoute',
},
{
path: '/dashboard',
component: '@/layouts/index',
routes: [
{
path: '/dashboard',
component: '@/pages/DashboardPage',
},
{
path: '/dashboard/ai-action-task-manager',
component: '@/pages/AIActionTaskManager',
},
{
path: '/dashboard/ai-suggestion',
component: '@/pages/AISuggestionPage',
},
{
path: '/dashboard/human-approval',
component: '@/pages/HumanApprovalPage',
},
{
path: '/dashboard/client-management',
component: '@/pages/ClientManagement',
},
{
path: '/dashboard/execution-results',
component: '@/pages/ExecutionResults',
},
{
path: '/dashboard/ai-decision-log',
component: '@/pages/AIDecisionLog/index',
},
{
path: '/dashboard/strategy-marketplace',
component: '@/pages/StrategyMarketplace/index',
},
{
path: '/dashboard/auto-product-selection',
component: '@/pages/AutoProductSelection/index',
},
{
path: '/dashboard/auto-execution',
component: '@/pages/AutoExecution/index',
},
{
path: '/dashboard/workflow',
component: '@/pages/Workflow/WorkflowManagement',
},
{
path: '/dashboard/workflow/config',
component: '@/pages/Workflow/WorkflowConfig',
},
{
path: '/dashboard/operation-agent',
component: '@/pages/OperationAgentEnhanced',
},
{
path: '/dashboard/operation-agent-enhanced',
component: '@/pages/OperationAgentEnhanced',
},
{
path: '/dashboard/auto-pilot',
component: '@/pages/AutoPilot/index',
},
{
path: '/dashboard/task-center',
component: '@/pages/TaskCenter/index',
},
{
path: '/dashboard/product',
component: '@/pages/Product/index',
},
{
path: '/dashboard/product/publish',
component: '@/pages/Product/ProductPublishForm',
},
{
path: '/dashboard/product/ai-pricing',
component: '@/pages/Product/AIPricing/index',
},
{
path: '/dashboard/product/profit-monitor',
component: '@/pages/Product/ProfitMonitor/index',
},
{
path: '/dashboard/inventory',
component: '@/pages/Inventory/index',
},
{
path: '/dashboard/inventory/warehouses',
component: '@/pages/Warehouse/index',
},
{
path: '/dashboard/orders',
component: '@/pages/Orders/index',
},
{
path: '/dashboard/orders/exception',
component: '@/pages/Orders/ExceptionOrder',
},
{
path: '/dashboard/after-sales',
component: '@/pages/AfterSales/index',
},
{
path: '/dashboard/after-sales/refund',
component: '@/pages/AfterSales/RefundProcess',
},
{
path: '/dashboard/logistics',
component: '@/pages/Logistics/index',
},
{
path: '/dashboard/logistics/freight-calc',
component: '@/pages/Logistics/FreightCalc',
},
{
path: '/dashboard/finance',
component: '@/pages/Finance/index',
},
{
path: '/dashboard/finance/transactions',
component: '@/pages/Finance/Transactions',
},
{
path: '/dashboard/finance/reconciliation',
component: '@/pages/Finance/Reconciliation',
},
{
path: '/dashboard/user-asset',
component: '@/pages/UserAsset/UserAssets',
},
{
path: '/dashboard/ad',
component: '@/pages/Ad/index',
},
{
path: '/dashboard/marketing/competitors',
component: '@/pages/Marketing/Competitors',
},
{
path: '/dashboard/dynamic-pricing',
component: '@/pages/DynamicPricing/index',
},
{
path: '/dashboard/ab-test',
component: '@/pages/ABTest/ABTestConfig',
},
{
path: '/dashboard/analytics',
component: '@/pages/Analytics/index',
},
{
path: '/dashboard/analytics/dashboard',
component: '@/pages/Analytics/AnalyticsDashboard',
},
{
path: '/dashboard/reports',
component: '@/pages/Reports/index',
},
{
path: '/dashboard/multi-shop-report',
component: '@/pages/MultiShopReport/index',
},
{
path: '/dashboard/leaderboard',
component: '@/pages/Leaderboard/index',
},
{
path: '/dashboard/merchant',
component: '@/pages/Merchant/index',
},
{
path: '/dashboard/b2b',
component: '@/pages/B2B/index',
},
{
path: '/dashboard/b2b/batch-order',
component: '@/pages/B2B/BatchOrder',
},
{
path: '/dashboard/b2b/enterprise-quote',
component: '@/pages/B2B/EnterpriseQuote',
},
{
path: '/dashboard/b2b/contract-manage',
component: '@/pages/B2B/ContractManage',
},
{
path: '/dashboard/procurement',
component: '@/pages/Procurement/index',
},
{
path: '/dashboard/suppliers',
component: '@/pages/Suppliers/index',
},
{
path: '/dashboard/warehouse',
component: '@/pages/Warehouse/index',
},
{
path: '/dashboard/independent-site',
component: '@/pages/IndependentSite/index',
},
{
path: '/dashboard/independent-site/create',
component: '@/pages/IndependentSite/IndependentSiteCreate',
},
{
path: '/dashboard/independent-site/templates',
component: '@/pages/IndependentSite/SiteTemplates',
},
{
path: '/dashboard/independent-site/analytics',
component: '@/pages/IndependentSite/IndependentSiteAnalytics',
},
{
path: '/dashboard/independent-site/orders',
component: '@/pages/IndependentSite/IndependentSiteOrder',
},
{
path: '/dashboard/independent-site/products',
component: '@/pages/IndependentSite/IndependentSiteProduct',
},
{
path: '/dashboard/independent-site/domains',
component: '@/pages/IndependentSite/DomainManagement',
},
{
path: '/dashboard/blacklist',
component: '@/pages/Blacklist/index',
},
{
path: '/dashboard/compliance',
component: '@/pages/Compliance/index',
},
{
path: '/dashboard/audit',
component: '@/pages/Audit/index',
},
{
path: '/dashboard/operation-logs',
component: '@/pages/OperationLogs/index',
},
{
path: '/dashboard/governance',
component: '@/pages/Governance/index',
},
{
path: '/dashboard/sovereignty',
component: '@/pages/Sovereignty/index',
},
{
path: '/dashboard/compliance/certificates',
component: '@/pages/Compliance/CertificateManage',
},
{
path: '/dashboard/settings',
component: '@/pages/Settings/index',
},
{
path: '/dashboard/settings/platform-auth',
component: '@/pages/Settings/PlatformAuth',
},
{
path: '/dashboard/settings/service-manager',
component: '@/pages/Settings/ServiceManager',
},
{
path: '/dashboard/settings/subscription',
component: '@/pages/Settings/SubscriptionManage',
},
{
path: '/dashboard/settings/user',
component: '@/pages/Settings/UserManagement',
},
{
path: '/dashboard/settings/department',
component: '@/pages/Settings/DepartmentManagement',
},
{
path: '/dashboard/settings/my-shops',
component: '@/pages/Settings/MyShops',
},
{
path: '/dashboard/settings/shop-members',
component: '@/pages/Settings/ShopMemberManagement',
},
{
path: '/dashboard/settings/shop-members/:shopId',
component: '@/pages/Settings/ShopMemberManagement',
},
{
path: '/dashboard/user',
redirect: '/dashboard/settings/user',
},
{
path: '/dashboard/role',
component: '@/pages/Role/index',
},
],
},
{
path: '/auth/login',
component: '@/pages/Auth/LoginPage',
},
{
path: '/auth/register',
component: '@/pages/Auth/RegisterPage',
},
{
path: '/auth/reset-password',
component: '@/pages/Auth/ResetPasswordPage',
},
],
fastRefresh: true,
esbuildMinifyIIFE: true,
});