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

16 lines
330 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-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,
greenCarbon
2024-11-27 23:42:39 +08:00
}