br05_carNumber.js 1.0 KB

123456789101112131415161718192021222324
  1. 'use strict';
  2. module.exports = app => {
  3. const { router, controller } = app;
  4. // 实销车辆统计分析 实销车辆百分比统计分析 入网车辆总数统计分析
  5. router.get('/report/carNumber/index', controller.carNumberController.index);
  6. // 实销增量
  7. router.get('/report/carNumber/increment', controller.carNumberController.increment);
  8. // 在线车辆分布统计分析
  9. router.get('/report/carNumber/online', controller.carNumberController.online);
  10. // 活跃车辆
  11. router.get('/report/carNumber/active', controller.carNumberController.active);
  12. // 车辆上报分类信息统计
  13. router.get('/report/carNumber/report', controller.carNumberController.report);
  14. // 实销城市排名
  15. router.get('/report/carNumber/saledCity', controller.carNumberController.saledCity);
  16. // 当前在线车辆数量
  17. router.get('/report/carNumber/onlineCount', controller.carNumberController.onlineCount);
  18. // 活跃车辆 扩展数据
  19. router.get('/report/carNumber/activeExt', controller.carNumberController.activeExt);
  20. };