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

20 lines
428 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";
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,
};