47 lines
2.4 KiB
Plaintext
47 lines
2.4 KiB
Plaintext
|
|
The file /home/project/AGENTS.md has been updated. Made 1 replacement.
|
|||
|
|
|
|||
|
|
Here's the result of running `cat -n` on a snippet of the edited file:
|
|||
|
|
90→ ├── mobile-dev/
|
|||
|
|
91→ └── react-project/
|
|||
|
|
92→```
|
|||
|
|
93→
|
|||
|
|
94→### 重构后新增目录结构(2025-05-24)
|
|||
|
|
95→
|
|||
|
|
96→```
|
|||
|
|
97→src/
|
|||
|
|
98→├── components/
|
|||
|
|
99→│ ├── warehouse/ # 仓库管理组件
|
|||
|
|
100→│ │ ├── WarehouseNav.tsx # 仓库导航组件
|
|||
|
|
101→│ │ ├── ProductForm.tsx # 产品表单模态框
|
|||
|
|
102→│ │ ├── InboundForm.tsx # 入库表单模态框
|
|||
|
|
103→│ │ ├── ProductList.tsx # 产品列表组件(桌面+移动端)
|
|||
|
|
104→│ │ └── InboundRecords.tsx # 入库记录列表
|
|||
|
|
105→│ ├── plans/ # 计划管理组件
|
|||
|
|
106→│ │ ├── PlanGroup.tsx # 计划分组组件
|
|||
|
|
107→│ │ ├── ShareModal.tsx # 分享弹窗组件
|
|||
|
|
108→│ │ └── PlanEditModal.tsx # 计划编辑弹窗
|
|||
|
|
109→│ ├── HelpCenter.tsx # 帮助中心(F1快捷键)
|
|||
|
|
110→│ ├── UserManual.tsx # 用户手册
|
|||
|
|
111→│ ├── OnboardingGuide.tsx # 新手指引
|
|||
|
|
112→│ ├── Tooltip.tsx # 工具提示组件
|
|||
|
|
113→│ ├── VersionUpdate.tsx # 版本更新检查
|
|||
|
|
114→│ ├── FeedbackModal.tsx # 用户反馈弹窗
|
|||
|
|
115→│ ├── CrashReporter.tsx # 崩溃报告系统
|
|||
|
|
116→│ ├── NotificationCenter.tsx # 通知中心
|
|||
|
|
117→│ └── DemoDisclaimerModal.tsx # Demo免责声明
|
|||
|
|
118→├── hooks/
|
|||
|
|
119→│ ├── useInventoryData.ts # 库存数据获取Hook(带缓存)
|
|||
|
|
120→│ ├── usePlanData.ts # 计划数据获取Hook(带缓存)
|
|||
|
|
121→│ ├── useResponsive.ts # 响应式Hook
|
|||
|
|
122→│ ├── useTheme.ts # 主题Hook
|
|||
|
|
123→│ └── usePerformance.ts # 性能检测Hook(动画降级)
|
|||
|
|
124→└── utils/
|
|||
|
|
125→ ├── constants.ts # 公共常量配置
|
|||
|
|
126→ ├── helpers.ts # 通用工具函数
|
|||
|
|
127→ └── shareCrypto.ts # 分享链接加密
|
|||
|
|
128→```
|
|||
|
|
129→
|
|||
|
|
130→### 帮助系统组件(2025-05-26)
|
|||
|
|
131→
|
|||
|
|
132→| 组件 | 功能 | 位置 |
|
|||
|
|
133→|------|------|------|
|