jhbigscreen/src/api/index.js

22 lines
573 B
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-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,
attendance
2023-08-10 01:16:23 +08:00
}