'use strict'; const Controller = require('egg').Controller; // ivi用户总数统计分析模块 class IviUserController extends Controller { // ivi用户总数 async index() { const { ctx, service } = this; // 校验参数 组装参数 const payload = ctx.validate(); // 调用 Service 进行业务处理 const data = await service.tRbacUserService.index(payload, 'iviTotal'); // 设置响应内容和响应状态码 ctx.success({ data }); } // ivi用户位置分布 async location() { const { ctx, service } = this; // 校验参数 组装参数 // 调用 Service 进行业务处理 const data = await service.onlineUserService2.place('iviLocation'); // 设置响应内容和响应状态码 ctx.success({ data }); } // ivi车主性别和年龄 async sexAndAge() { const { ctx, service } = this; // 调用 Service 进行业务处理 const data = await service.tRbacUserService.sexAndAge('iviSexAndAgeTotal'); // 设置响应内容和响应状态码 ctx.success({ data }); } } module.exports = IviUserController;