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