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