12345678910111213 |
- 'use strict';
- module.exports = app => {
- const { router, controller } = app;
- // app新增用户总数
- router.get('/report/appNewUser/index', controller.appNewUserController.index);
- // app新增用户分布
- router.get('/report/appNewUser/location', controller.appNewUserController.location);
- // app新增车主年龄性别分布
- router.get('/report/appNewUser/sexAndAge', controller.appNewUserController.sexAndAge);
- };
|