jhbigscreen/src/api/index.js

40 lines
1.1 KiB
JavaScript
Raw Normal View History

2023-08-10 01:16:23 +08:00
import project from './project/index'
import dept from './dept/index'
import schedule from './schedule/index'
import quarterlyAssess from './quarterlyAssess/index'
import problemmodify from './problemmodify/index'
2023-08-11 22:16:15 +08:00
import workFile from './workFile/index'
2023-08-12 00:32:45 +08:00
import workTrain from './workTrain/index'
2023-08-15 17:49:03 +08:00
import special from './special/index'
2023-08-15 23:08:27 +08:00
import dict from './dict/index'
2023-08-16 20:42:07 +08:00
import attendance from './attendance/index'
2023-08-17 19:39:55 +08:00
import insurance from './insurance/index'
2023-08-19 21:30:44 +08:00
import journalism from './journalism/index'
2023-08-20 00:25:52 +08:00
import buildNode from './buildNode'
2023-08-20 19:20:22 +08:00
import projectChecking from './projectChecking/index'
2023-08-26 01:23:16 +08:00
import measure from './measure/index'
2023-08-27 11:00:24 +08:00
import materialSeal from './materialSeal/index'
2023-08-26 01:23:16 +08:00
import checkDetection from './checkDetection/index'
2023-08-26 21:53:46 +08:00
import video from './video/index'
2023-08-23 00:03:22 +08:00
import {axios} from '@/utils/request'
2023-08-10 01:16:23 +08:00
export default {
project,
dept,
schedule,
quarterlyAssess,
2023-08-11 22:16:15 +08:00
problemmodify,
2023-08-12 00:32:45 +08:00
workFile,
2023-08-15 17:49:03 +08:00
workTrain,
2023-08-15 23:08:27 +08:00
special,
2023-08-16 20:42:07 +08:00
dict,
2023-08-17 19:39:55 +08:00
attendance,
2023-08-19 21:30:44 +08:00
insurance,
2023-08-20 00:25:52 +08:00
journalism,
2023-08-20 19:20:22 +08:00
buildNode,
2023-08-23 00:03:22 +08:00
projectChecking,
2023-08-26 01:23:16 +08:00
measure,
2023-08-27 11:00:24 +08:00
materialSeal,
2023-08-26 01:23:16 +08:00
checkDetection,
2023-08-26 21:53:46 +08:00
http:axios,
video
2023-08-10 01:16:23 +08:00
}