router.js 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496
  1. 'use strict';
  2. /**
  3. * @param {Egg.Application} app - egg application
  4. */
  5. module.exports = app => {
  6. const { router, controller } = app;
  7. router.get('/', controller.home.index);
  8. // 共通查询单条记录方法
  9. router.get('/api/train/common/findone/:modelname', controller.common.findone);
  10. // 共通批量查询方法
  11. router.post(
  12. '/api/train/common/findbyids/:modelname',
  13. controller.common.findbyids
  14. );
  15. // 共通查询表
  16. router.get('/api/train/common/findbymodel', controller.common.findbymodel);
  17. router.get('/api/train/common/findyear', controller.common.findyear);
  18. // 基础设置表路由
  19. router.get('/api/train/setting/findone', controller.setting.findone);
  20. router.resources('setting', '/api/train/setting', controller.setting); // index、create、show、destroy
  21. router.post(
  22. 'setting',
  23. '/api/train/setting/update/:id',
  24. controller.setting.update
  25. );
  26. // 科目表设置路由
  27. router.resources('subject', '/api/train/subject', controller.subject); // index、create、show、destroy
  28. router.post(
  29. 'subject',
  30. '/api/train/subject/update/:id',
  31. controller.subject.update
  32. );
  33. // 教师表设置路由
  34. router.get('teacher', '/api/train/teacher/show/:id', controller.teacher.show);
  35. router.resources('teacher', '/api/train/teacher', controller.teacher); // index、create、show、destroy
  36. router.post(
  37. 'teacher',
  38. '/api/train/teacher/update/:id',
  39. controller.teacher.update
  40. );
  41. router.post(
  42. 'teacher',
  43. '/api/train/teacher/status',
  44. controller.teacher.status
  45. );
  46. router.post('/api/train/teacher/teaimport', controller.teacher.teaimport);
  47. // 作业表配置路由
  48. router.resources('task', '/api/train/task', controller.task); // index、create、show、destroy
  49. router.post('task', '/api/train/task/update/:id', controller.task.update);
  50. // 问卷题库表配置路由
  51. router.resources('question', '/api/train/question', controller.question); // index、create、show、destroy
  52. router.post(
  53. 'question',
  54. '/api/train/question/update/:id',
  55. controller.question.update
  56. );
  57. // 问卷表配置路由
  58. router.post(
  59. 'questionnaire',
  60. '/api/train/questionnaire',
  61. controller.questionnaire.create
  62. );
  63. router.delete(
  64. 'questionnaire',
  65. '/api/train/questionnaire/:id',
  66. controller.questionnaire.delete
  67. );
  68. router.post(
  69. 'questionnaire',
  70. '/api/train/questionnaire/update/:id',
  71. controller.questionnaire.update
  72. );
  73. router.get(
  74. 'questionnaire',
  75. '/api/train/questionnaire',
  76. controller.questionnaire.query
  77. );
  78. router.get(
  79. 'questionnaire',
  80. '/api/train/questionnaire/show/:id',
  81. controller.questionnaire.show
  82. );
  83. // 学生表设置路由
  84. router.get(
  85. 'sutdent',
  86. '/api/train/student/findscore',
  87. controller.student.findscore
  88. );
  89. router.get(
  90. 'sutdent',
  91. '/api/train/student/findbedroom',
  92. controller.student.findbedroom
  93. );
  94. router.get('sutdent', '/api/train/student/seek', controller.student.seek);
  95. router.resources('student', '/api/train/student', controller.student); // index、create、show、destroy
  96. router.post(
  97. 'student',
  98. '/api/train/student/update/:id',
  99. controller.student.update
  100. );
  101. router.post('student', '/api/train/student/upjob', controller.student.upjob);
  102. router.post(
  103. 'student',
  104. '/api/train/student/deleteclass',
  105. controller.student.deleteclass
  106. ); // 删除学生班级
  107. router.post(
  108. 'student',
  109. '/api/train/student/findbystuids',
  110. controller.student.findbystuids
  111. );
  112. router.post(
  113. 'student',
  114. '/api/train/student/deletestus',
  115. controller.student.deletestus
  116. ); // 删除学生多条
  117. router.post(
  118. 'student',
  119. '/api/train/student/updatabedroom',
  120. controller.student.updatabedroom
  121. ); // 批量学生寝室号
  122. // 班主任表设置路由
  123. router.resources(
  124. 'headteacher',
  125. '/api/train/headteacher',
  126. controller.headteacher
  127. ); // index、create、show、destroy
  128. router.post(
  129. 'headteacher',
  130. '/api/train/headteacher/update/:id',
  131. controller.headteacher.update
  132. );
  133. // 寝室表设置路由
  134. router.get('/api/train/bedroom/student/:id', controller.bedroom.roomstu); // 根据班级id查询寝室信息
  135. router.resources('bedroom', '/api/train/bedroom', controller.bedroom); // index、create、show、destroy
  136. router.post(
  137. 'bedroom',
  138. '/api/train/bedroom/update/:id',
  139. controller.bedroom.update
  140. );
  141. router.post('bedroom', '/api/train/bedroom/apart', controller.bedroom.apart);
  142. router.post(
  143. 'bedroom',
  144. '/api/train/bedroom/ibeacon',
  145. controller.bedroom.ibeacon
  146. );
  147. // 班级表设置路由
  148. router.get(
  149. 'class',
  150. '/api/train/class/classinfo/:id',
  151. controller.class.classinfo
  152. );
  153. router.post(
  154. 'class',
  155. '/api/train/class/upclasses',
  156. controller.class.upclasses
  157. );
  158. router.post('class', '/api/train/class/notice', controller.class.notice);
  159. router.resources('class', '/api/train/class', controller.class); // index、create、show、destroy
  160. router.post('class', '/api/train/class/update/:id', controller.class.update);
  161. router.post('class', '/api/train/class/divide', controller.class.divide);
  162. router.post('class', '/api/train/class/uptea', controller.class.uptea);
  163. router.post(
  164. 'class',
  165. '/api/train/class/upstuclass/:id',
  166. controller.class.studentupclass
  167. ); // 学生修改班级
  168. // 部门表设置路由
  169. router.resources(
  170. 'department',
  171. '/api/train/department',
  172. controller.department
  173. ); // index、create、show、destroy
  174. router.post(
  175. 'department',
  176. '/api/train/department/update/:id',
  177. controller.department.update
  178. );
  179. // 位置表设置路由
  180. router.resources('location', '/api/train/location', controller.location); // index、create、show、destroy
  181. router.post(
  182. 'location',
  183. '/api/train/location/update/:id',
  184. controller.location.update
  185. );
  186. // 培训计划表设置路由
  187. router.resources('trainplan', '/api/train/trainplan', controller.trainplan); // index、create、show、destroy
  188. router.post('trainplan','/api/train/trainplan/update/:id',controller.trainplan.update);
  189. router.post('/api/train/trainplan/exportExcel', controller.trainplan.exportExcel); // 导出
  190. router.post('/api/train/trainplan/exportSchool', controller.trainplan.exportSchool); // 导出计划学校
  191. router.post('/api/train/trainplan/exportPlan', controller.trainplan.exportPlan); // 导出计划日历
  192. router.post('/api/train/trainplan/updateclass', controller.trainplan.updateclass);
  193. router.post('/api/train/trainplan/updatereteacher', controller.trainplan.updatereteacher);
  194. // 培训计划年度批次表设置路由
  195. router.resources('trainplanyear', '/api/train/trainplanyear', controller.trainplanyear); // index、create、show、destroy
  196. router.post('trainplanyear', '/api/train/trainplanyear/update/:id', controller.trainplanyear.update);
  197. // 节假日表设置路由
  198. router.resources('festival', '/api/train/festival', controller.festival); // index、create、show、destroy
  199. router.post(
  200. 'festival',
  201. '/api/train/festival/update/:id',
  202. controller.festival.update
  203. );
  204. // 课程表设置路由
  205. router.get('/api/train/lesson/teaclass', controller.lesson.teaclass);
  206. router.post(
  207. 'lesson',
  208. '/api/train/lesson/uplessones',
  209. controller.lesson.uplessones
  210. );
  211. router.get('/api/train/lesson/classbyteaid', controller.lesson.classbyteaid); // 根据计划id与教师id查询班级信息
  212. router.resources('lesson', '/api/train/lesson', controller.lesson); // index、create、show、destroy
  213. router.post(
  214. 'lesson',
  215. '/api/train/lesson/update/:id',
  216. controller.lesson.update
  217. );
  218. router.post(
  219. 'lesson',
  220. '/api/train/lesson/autolesson/:id',
  221. controller.lesson.autolesson
  222. ); // 自动排课
  223. // 培训计划学校上报时间表设置路由
  224. router.resources('schtime', '/api/train/schtime', controller.schtime); // index、create、show、destroy
  225. router.post(
  226. 'schtime',
  227. '/api/train/schtime/update/:id',
  228. controller.schtime.update
  229. );
  230. router.post(
  231. 'schtime',
  232. '/api/train/schtime/updateschtimes',
  233. controller.schtime.updateschtimes
  234. );
  235. // 班主任全年计划表设置路由
  236. router.get('teaplan', '/api/train/teaplan/divide', controller.teaplan.divide);
  237. router.get(
  238. 'teaplan',
  239. '/api/train/teaplan/findteacher',
  240. controller.teaplan.findteacher
  241. );
  242. router.resources('teaplan', '/api/train/teaplan', controller.teaplan); // index、create、show、destroy
  243. router.post(
  244. 'teaplan',
  245. '/api/train/teaplan/update/:id',
  246. controller.teaplan.update
  247. );
  248. // 教师申请讲课表设置路由
  249. router.get(
  250. 'apply',
  251. '/api/train/apply/queryteacher',
  252. controller.apply.queryteacher
  253. );
  254. router.resources('apply', '/api/train/apply', controller.apply); // index、create、show、destroy
  255. router.post('apply', '/api/train/apply/update/:id', controller.apply.update);
  256. // 请假表设置路由
  257. router.resources('leave', '/api/train/leave', controller.leave); // index、create、show、destroy
  258. router.post('leave', '/api/train/leave/update/:id', controller.leave.update);
  259. // 分组表设置路由
  260. router.resources('group', '/api/train/group', controller.group); // index、create、show、destroy
  261. router.post('group', '/api/train/group/update/:id', controller.group.update);
  262. router.post('group', '/api/train/group/insert', controller.group.insert);
  263. router.post('group', '/api/train/group/exit', controller.group.exit);
  264. router.post('group', '/api/train/group/sethead', controller.group.sethead);
  265. router.post(
  266. 'group',
  267. '/api/train/group/findbystuid',
  268. controller.group.findbystuid
  269. );
  270. // 职责说明表设置路由
  271. router.resources('duty', '/api/train/duty', controller.duty); // index、create、show、destroy
  272. router.post('duty', '/api/train/duty/update/:id', controller.duty.update);
  273. // 学生上传作业表设置路由
  274. router.resources(
  275. 'uploadtask',
  276. '/api/train/uploadtask',
  277. controller.uploadtask
  278. ); // index、create、show、destroy
  279. router.post(
  280. 'uploadtask',
  281. '/api/train/uploadtask/update/:id',
  282. controller.uploadtask.update
  283. );
  284. // 学生上传问卷表设置路由
  285. router.get(
  286. '/api/train/uploadquestion/completion',
  287. controller.uploadquestion.completion
  288. ); // 统计完成度
  289. router.resources(
  290. 'uploadquestion',
  291. '/api/train/uploadquestion',
  292. controller.uploadquestion
  293. ); // index、create、show、destroy
  294. router.post(
  295. 'uploadquestion',
  296. '/api/train/uploadquestion/update/:id',
  297. controller.uploadquestion.update
  298. );
  299. // 考勤表设置路由
  300. router.get('/api/train/attendance/wxauth', controller.attendance.wxauth); // 统计完成度
  301. router.resources(
  302. 'attendance',
  303. '/api/train/attendance',
  304. controller.attendance
  305. ); // index、create、show、destroy
  306. router.post(
  307. 'attendance',
  308. '/api/train/attendance/update/:id',
  309. controller.attendance.update
  310. );
  311. router.post(
  312. 'attendance',
  313. '/api/train/attendance/attendancecreate',
  314. controller.attendance.attendancecreate
  315. );
  316. router.post(
  317. 'attendance',
  318. '/api/train/attendance/attendancecreateList',
  319. controller.attendance.attendancecreateList
  320. );
  321. // 学校上传学生名单
  322. router.resources('school', '/api/train/school', controller.school); // index、create、show、destroy
  323. router.post(
  324. 'school',
  325. '/api/train/school/update/:id',
  326. controller.school.update
  327. );
  328. router.post('/api/train/school/import', controller.school.stuimport); // 名单上传
  329. // 民族表设置路由
  330. router.resources('nation', '/api/train/nation', controller.nation); // index、create、show、destroy
  331. router.post(
  332. 'nation',
  333. '/api/train/nation/update/:id',
  334. controller.nation.update
  335. );
  336. // 行政区划表设置路由
  337. router.resources('region', '/api/train/region', controller.region); // index、create、show、destroy
  338. router.post(
  339. 'region',
  340. '/api/train/region/update/:id',
  341. controller.region.update
  342. );
  343. // 用户表设置路由
  344. router.get('/api/train/user/schoolregister', controller.user.schoolregister); // 学校账号一键生成
  345. router.resources('user', '/api/train/user', controller.user); // index、create、show、destroy
  346. router.post('user', '/api/train/user/update/:id', controller.user.update);
  347. router.post('user', '/api/train/user/register', controller.user.register); // 学校注册
  348. router.post('user', '/api/train/user/bind', controller.user.bind); // 学生微信绑定
  349. router.post('user', '/api/train/user/userbind', controller.user.userbind); // 其他用户微信绑定
  350. // 行政区划表设置路由
  351. router.resources('termquest', '/api/train/termquest', controller.termquest); // index、create、show、destroy
  352. router.post(
  353. 'termquest',
  354. '/api/train/termquest/update/:id',
  355. controller.termquest.update
  356. );
  357. // 微信端访问地址
  358. router.get('/api/train/auth', controller.weixin.auth); // 微信登录
  359. // 微信端访问地址
  360. router.get('/api/train/authtest', controller.weixin.authTest); // 微信登录测试
  361. // pc端登录
  362. router.post('/api/train/login', controller.login.login); // 登录
  363. // 微信端登录
  364. router.get('/api/train/qrcode', controller.login.qrcode); // 登录
  365. router.post('/api/train/wxcheck', controller.login.wxcheck); // 微信检查登录
  366. router.post('/api/train/wxlogin', controller.login.wxlogin); // 登录
  367. // 评分表设置路由
  368. router.resources('score', '/api/train/score', controller.score); // index、create、show、destroy
  369. router.post('score', '/api/train/score/update/:id', controller.score.update);
  370. // 上传资料表设置路由
  371. router.resources('material', '/api/train/material', controller.material); // index、create、show、destroy
  372. router.post(
  373. 'material',
  374. '/api/train/material/update/:id',
  375. controller.material.update
  376. );
  377. // 资料评分表设置路由
  378. router.resources(
  379. 'materialscore',
  380. '/api/train/materialscore',
  381. controller.materialscore
  382. ); // index、create、show、destroy
  383. router.post(
  384. 'materialscore',
  385. '/api/train/materialscore/update/:id',
  386. controller.materialscore.update
  387. );
  388. // 教师在线表设置路由
  389. router.resources('online', '/api/train/online', controller.online); // index、create、show、destroy
  390. router.post(
  391. 'online',
  392. '/api/train/online/update/:id',
  393. controller.online.update
  394. );
  395. // 聊天房间表设置路由
  396. router.resources('room', '/api/train/room', controller.room); // index、create、show、destroy
  397. router.post('room', '/api/train/room/update/:id', controller.room.update);
  398. // 聊天记录表设置路由
  399. router.resources('record', '/api/train/record', controller.record); // index、create、show、destroy
  400. router.post(
  401. 'record',
  402. '/api/train/record/update/:id',
  403. controller.record.update
  404. );
  405. // 通知表设置路由
  406. router.resources('notice', '/api/train/notice', controller.notice); // index、create、show、destroy
  407. router.post(
  408. 'notice',
  409. '/api/train/notice/update/:id',
  410. controller.notice.update
  411. );
  412. router.post('notice', '/api/train/notice/look', controller.notice.look);
  413. // 课程模板表设置路由
  414. router.resources(
  415. 'lessonmode',
  416. '/api/train/lessonmode',
  417. controller.lessonmode
  418. ); // index、create、show、destroy
  419. router.post(
  420. 'lessonmode',
  421. '/api/train/lessonmode/update/:id',
  422. controller.lessonmode.update
  423. );
  424. // 全年计划模板表设置路由
  425. router.resources(
  426. 'trainmodel',
  427. '/api/train/trainmodel',
  428. controller.trainmodel
  429. ); // index、create、show、destroy
  430. router.post(
  431. 'trainmodel',
  432. '/api/train/trainmodel/update/:id',
  433. controller.trainmodel.update
  434. );
  435. // 统计查询设置路由
  436. router.get('/api/train/count/countstudent', controller.count.countstudent);
  437. // 按学校统计查询设置路由
  438. router.get('/api/train/count/countschstu/:id', controller.count.countschstu);
  439. // 班级类型表配置路由
  440. router.resources('classtype', '/api/train/classtype', controller.classtype); // index、create、show、destroy
  441. router.post(
  442. 'classtype',
  443. '/api/train/classtype/update/:id',
  444. controller.classtype.update
  445. );
  446. // 学校上传任务表设置路由
  447. router.resources('job', '/api/train/job', controller.job); // index、create、show、destroy
  448. router.post('job', '/api/train/job/update/:id', controller.job.update);
  449. // 消息表设置路由
  450. router.resources('message', '/api/train/message', controller.message); // index、create、show、destroy
  451. router.post('message', '/api/train/message/update/:id', controller.message.update);
  452. };