visit.js 1.5 KB

1234567891011121314151617181920212223
  1. 'use strict';
  2. module.exports = app => {
  3. const { router, controller } = app;
  4. // 共用接口
  5. router.post('/chart/dept/findDept', controller.home.findDept);
  6. // 探访信息统计( 12个接口 )
  7. router.post('/chart/visit/health', controller.visit.health); // 1.老年人健康状况【已测试】
  8. router.post('/chart/visit/mind', controller.visit.mind); // 2.老年人精神状态【已测试】
  9. router.post('/chart/visit/security', controller.visit.security); // 3.老年人安全情况【已测试】
  10. router.post('/chart/visit/hygiene', controller.visit.hygiene); // 4.老年人卫生环境【已测试】
  11. router.post('/chart/visit/live', controller.visit.live); // 5.老年人居住情况【已测试】
  12. router.post('/chart/user/selectUserBySex', controller.visit.selectUserBySex); // 6.巡访员性别分布统计【已测试】
  13. router.post('/chart/user/selectAuthAndLook', controller.visit.selectAuthAndLook); // 7.巡访员认证数据统计【已测试】
  14. router.post('/chart/value/selectUserValue', controller.visit.selectUserValue); // 8.巡访员积分排行TOP10【已测试】
  15. router.post('/chart/user/selectByJob', controller.visit.selectByJob); // 9.巡访员职务分布统计【已测试】
  16. router.post('/chart/value/selectDeptValue', controller.visit.selectDeptValue); // 10.地区总积分【已测试】
  17. router.post('/chart/dept/visitWay', controller.visit.visitWay); // 11.巡访员巡访问方式统计
  18. router.post('/chart/visit/visitnum', controller.visit.visitnum); // 12.巡访数量统计
  19. };