iviNewUserController.js 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. 'use strict';
  2. const Controller = require('egg').Controller;
  3. // ivi新增用户总数统计分析模块
  4. class IviNewUserController extends Controller {
  5. constructor(ctx) {
  6. super(ctx);
  7. // 特殊的入参校验可以重写在这,默认可以使用commonRule
  8. this.createRule = {
  9. startTime: { type: 'number', min: 0 }, // 开始时间的时间戳 包含
  10. endTime: { type: 'number', min: 0 }, // 结束时间的时间戳 不包含(客户端处理结束时间 下一日 ,下一月第一日 ,下一年第一日)
  11. };
  12. }
  13. // ivi新增用户总数
  14. async index() {
  15. const { ctx } = this;
  16. // 校验参数 组装参数
  17. const payload = ctx.validate();
  18. // 调用 Service 进行业务处理
  19. const data = await ctx.getData(payload);
  20. // 设置响应内容和响应状态码
  21. ctx.success({ data });
  22. }
  23. // ivi新增用户位置分布
  24. async location() {
  25. const { ctx } = this;
  26. // 校验参数 组装参数
  27. const payload = ctx.validate(this.createRule);
  28. // 调用 Service 进行业务处理
  29. const data = await ctx.getArea(payload);
  30. // 设置响应内容和响应状态码
  31. ctx.success({ data });
  32. }
  33. // ivi新增车主性别和年龄
  34. async sexAndAge() {
  35. const { ctx } = this;
  36. // 调用 Service 进行业务处理
  37. const data = await ctx.getSex2Age();
  38. // 设置响应内容和响应状态码
  39. ctx.success({ data });
  40. }
  41. }
  42. module.exports = IviNewUserController;