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

18 lines
390 B
JavaScript
Raw Normal View History

2024-11-27 23:42:39 +08:00
import {axios,download} from '@/utils/request'
import project from './project'
2024-12-05 00:17:06 +08:00
import weather from './weather'
2024-12-07 12:49:34 +08:00
import detail from './detail'
import dict from './dict'
2024-12-14 22:48:31 +08:00
import greenCarbon from './greenCarbon'
2024-12-29 22:10:36 +08:00
import videoMonitor from './videoMonitor'
2024-11-27 23:42:39 +08:00
export default {
http:axios,
downFile:download,
2024-12-05 00:17:06 +08:00
project,
2024-12-07 12:49:34 +08:00
weather,
detail,
2024-12-14 22:48:31 +08:00
dict,
2024-12-29 22:10:36 +08:00
greenCarbon,
videoMonitor
2024-11-27 23:42:39 +08:00
}