35 lines
699 B
JavaScript
35 lines
699 B
JavaScript
/**
|
||
* API 接口封装
|
||
* 统一管理所有 API 请求
|
||
*
|
||
* 按功能模块分类:
|
||
* - user: 用户相关 API
|
||
* - dashboard: 仪表板相关 API
|
||
* - task: 任务相关 API
|
||
* - customer: 客户相关 API
|
||
* - common: 通用 API(七牛云、地区树等)
|
||
*/
|
||
|
||
// 导入用户相关 API
|
||
export * from './user';
|
||
|
||
// 导入仪表板相关 API
|
||
export * from './dashboard';
|
||
|
||
// 导入任务相关 API
|
||
export * from './task';
|
||
|
||
// 导入客户相关 API
|
||
export * from './customer';
|
||
|
||
// 导入通用 API
|
||
export * from './common';
|
||
|
||
// 导入审批相关 API
|
||
export * from './verify';
|
||
|
||
// 导入项目相关 API
|
||
export * from './project';
|
||
|
||
// 导入版本更新相关 API
|
||
export * from './update'; |