OfficeSystem/api/index.js
2025-11-19 11:54:52 +08:00

35 lines
699 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* 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';