YZProjectCloud/yanzhu-bigscreen/src/api/index.js

39 lines
829 B
JavaScript
Raw Normal View History

2025-03-14 00:06:46 +08:00
import { axios, download } from "@/utils/request";
import project from "./project";
import weather from "./weather";
import detail from "./detail";
import dict from "./dict";
import greenCarbon from "./greenCarbon";
import videoMonitor from "./videoMonitor";
import safety from "./safety";
2025-03-22 19:04:33 +08:00
import tower from "./tower";
2025-04-06 22:01:25 +08:00
import powerIot from "./powerIot";
2025-04-20 13:31:47 +08:00
import aiWarning from "./aiWarning";
2025-05-21 00:47:25 +08:00
import planSchedule from "./planSchedule";
import labor from "./labor";
2025-06-12 18:38:47 +08:00
import bim from "./bim"
2025-07-11 18:19:07 +08:00
import machMater from './machmater'
2025-07-31 18:17:11 +08:00
import checked from './checked'
2025-10-13 15:31:00 +08:00
import pitmonit from './pitmonit'
2025-07-31 18:17:11 +08:00
2024-11-27 23:42:39 +08:00
export default {
2025-03-14 00:06:46 +08:00
http: axios,
downFile: download,
project,
weather,
detail,
dict,
greenCarbon,
videoMonitor,
safety,
2025-03-22 19:04:33 +08:00
tower,
2025-04-06 22:01:25 +08:00
powerIot,
2025-04-20 13:31:47 +08:00
aiWarning,
2025-05-07 00:37:49 +08:00
planSchedule,
2025-05-21 00:47:25 +08:00
labor,
2025-06-12 18:38:47 +08:00
bim,
2025-07-31 18:17:11 +08:00
machMater,
2025-10-13 15:31:00 +08:00
checked,
pitmonit
2025-03-14 00:06:46 +08:00
};