'use strict'; module.exports = app => { const { router, controller } = app; // app活跃用户总数 router.get('/report/appActiveUser/index', controller.appActiveUserController.index); // app活跃用户分布 router.get('/report/appActiveUser/location', controller.appActiveUserController.location); // app活跃用户年龄性别分布 router.get('/report/appActiveUser/sexAndAge', controller.appActiveUserController.sexAndAge); };