br10_appActiveUser.js 451 B

123456789101112
  1. 'use strict';
  2. module.exports = app => {
  3. const { router, controller } = app;
  4. // app活跃用户总数
  5. router.get('/report/appActiveUser/index', controller.appActiveUserController.index);
  6. // app活跃用户分布
  7. router.get('/report/appActiveUser/location', controller.appActiveUserController.location);
  8. // app活跃用户年龄性别分布
  9. router.get('/report/appActiveUser/sexAndAge', controller.appActiveUserController.sexAndAge);
  10. };