other.js 921 B

1234567891011121314151617
  1. 'use strict';
  2. module.exports = app => {
  3. const { router, controller } = app;
  4. // 其他数据统计
  5. router.post('/chart/user/selectUserByAuth', controller.other.selectUserByAuth); // 1.采集员认证统计【已测试】
  6. router.post('/chart/info/fourquan', controller.other.fourquan); // 2.运营分析【已测试】
  7. router.post('/chart/info/infomonth', controller.other.infomonth); // 3.首页左下角采集 【已测试】
  8. router.post('/chart/user/selectSexAndLook', controller.other.selectSexAndLook); // 4.采集员 性别,政治面貌【已测试】
  9. router.post('/chart/other/selectListOfSetRedisByCc', controller.other.selectListOfSetRedisByCc); // 给长春市的固定丨接口,存入redis。 2023-11-13
  10. router.post('/chart/other/selectListByCc', controller.other.selectListByCc); // 给长春市的固定接口
  11. // 登陆
  12. // router.post('/chart/auth/login', controller.other.login);
  13. };