31 lines
1.5 KiB
Plaintext
31 lines
1.5 KiB
Plaintext
src/
|
|
├── apis/
|
|
│ ├── landResourceManagement/ # 土地资源管理
|
|
│ │ ├── plantingPlan/ # 种植规划
|
|
│ │ │ ├── index.js
|
|
│ │ ├── operationRecord/ # 作业记录
|
|
│ │ │ ├── index.js
|
|
│ │ ├── landIllegal/ # 土地违法处理
|
|
│ │ │ ├── index.js
|
|
│ │ ├── landManagement/ # 土地管理
|
|
│ │ │ ├── index.js
|
|
│ │ ├── landInspection/ # 土地巡查
|
|
│ │ │ ├── index.js
|
|
│ │ ├── gridManagement/ # 网格管理
|
|
│ │ │ ├── index.js
|
|
│ │ ├── gridMemberManagement/ # 网格员管理
|
|
│ │ │ ├── index.js
|
|
│ │ ├── basicInfoMaintenance/ # 基础信息维护
|
|
│ │ │ ├── index.js
|
|
│ │ ├── cropsManagement/ # 种植作物
|
|
│ │ │ ├── index.js
|
|
│ │ ├── index.js # 土地资源管理模块统一入口
|
|
│ ├── productionEntityManagement/ # 生产经营主体管理
|
|
│ │ ├── index.js
|
|
│ ├── inputManagement/ # 投入品管理
|
|
│ │ ├── index.js
|
|
│ ├── productTraceability/ # 农产品溯源
|
|
│ │ ├── index.js
|
|
│ ├── index.js # 项目统一入口文件
|
|
├── utils/
|
|
│ ├── axios.js # 封装的请求工具 |