userDrivingController2.js 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. 'use strict';
  2. const Controller = require('egg').Controller;
  3. // 用户出行信息行为统计分析模块
  4. class UserDrivingController2 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. async index() {
  14. const { ctx } = this;
  15. // 校验参数 组装参数
  16. const payload = ctx.validate();
  17. // // 调用 Service 进行业务处理
  18. const data = await ctx.getMix(payload, this.ctx.params.id);
  19. // // 设置响应内容和响应状态码
  20. ctx.success({ data });
  21. }
  22. async mileageStartTimeAndDsm() {
  23. const { ctx } = this;
  24. // 校验参数 组装参数
  25. const payload = ctx.validate();
  26. // // 调用 Service 进行业务处理
  27. const data = await ctx.getMix2(payload);
  28. // // 设置响应内容和响应状态码
  29. ctx.success({ data });
  30. }
  31. async date() {
  32. const { ctx } = this;
  33. // 校验参数 组装参数
  34. const payload = ctx.validate();
  35. // // 调用 Service 进行业务处理
  36. const data = await ctx.getMix3(payload, this.ctx.params.id);
  37. // // 设置响应内容和响应状态码
  38. ctx.success({ data });
  39. }
  40. async count2() {
  41. const { ctx } = this;
  42. // 校验参数 组装参数
  43. const payload = ctx.validate();
  44. // // 调用 Service 进行业务处理
  45. const data = await ctx.getData(payload);
  46. // // 设置响应内容和响应状态码
  47. ctx.success({ data });
  48. }
  49. async sum() {
  50. const { ctx } = this;
  51. // 校验参数 组装参数
  52. ctx.validate(this.createRule);
  53. // 调用 Service 进行业务处理
  54. const kv = {
  55. continuousDrive: {
  56. 0: '0-1',
  57. 1: '1-2',
  58. 2: '2-3',
  59. 3: '3-4',
  60. 4: '4以上',
  61. },
  62. driveStyle: { 稳健型: '稳健型', 一般型: '一般型', 激进型: '激进型' },
  63. drivingSafetyScore: {
  64. 0: '60分以下',
  65. 60: '74-60分',
  66. 80: '89-75分',
  67. 90: '100-90分',
  68. },
  69. energyConservationScore: {
  70. 0: '60分以下',
  71. 60: '74-60分',
  72. 80: '89-75分',
  73. 90: '100-90分',
  74. },
  75. mileageAvg: {
  76. 0: '0-10',
  77. 10: '10-20',
  78. 20: '20-30',
  79. 30: '30-40',
  80. 40: '40-50',
  81. 50: '50-60',
  82. 60: '60-70',
  83. 70: '70-80',
  84. 80: '80-90',
  85. 90: '90-100',
  86. 100: '100以上',
  87. },
  88. };
  89. const data = await ctx.getSum(kv[this.ctx.params.id]);
  90. // // // 设置响应内容和响应状态码
  91. ctx.success({ data });
  92. }
  93. }
  94. module.exports = UserDrivingController2;