| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- import request from '@/utils/request' //引入axios请求及拦截器
- export default {
- //机构订单金额统计
- systemtoporderstatisticsmoneyByTenant(data) {
- return request({
- url: '/system/top/order/statistics/moneyByTenant',
- method: 'get',
- params: data
- })
- },
- //机构订单数量统计
- systemtoporderstatisticsnumByTenant(data) {
- return request({
- url: '/system/top/order/statistics/numByTenant',
- method: 'get',
- params: data
- })
- },
- //机构走势图
- systemtoporderstatisticstenantView(data) {
- return request({
- url: '/system/top/order/statistics/tenantView',
- method: 'get',
- params: data
- })
- },
- //机构业务员列表
- systemtoporderstatisticstenantCreateList(data) {
- return request({
- url: '/system/top/order/statistics/tenantCreateList',
- method: 'get',
- params: data
- })
- },
- //下单机构订单详情列表
- systemtoporderstatisticstenantDetailList(data) {
- return request({
- url: '/system/top/order/statistics/tenantDetailList',
- method: 'get',
- params: data
- })
- },
- //业务层次订单金额统计
- systemtoporderstatisticsmoneyByBusiness(data) {
- return request({
- url: '/system/top/order/statistics/moneyByBusiness',
- method: 'get',
- params: data
- })
- },
- //业务层次订单数量统计
- systemtoporderstatisticsnumByBusiness(data) {
- return request({
- url: '/system/top/order/statistics/numByBusiness',
- method: 'get',
- params: data
- })
- },
- //数据分析业务层次列表
- systemtoporderstatisticsbusinessList(data) {
- return request({
- url: '/system/top/order/statistics/businessList',
- method: 'get',
- params: data
- })
- },
- //业务层次走势图
- systemtoporderstatisticsbusinessView(data) {
- return request({
- url: '/system/top/order/statistics/businessView',
- method: 'get',
- params: data
- })
- },
- //下单业务层次详情列表
- systemtoporderstatisticsbusinessDetailList(data) {
- return request({
- url: '/system/top/order/statistics/businessDetailList',
- method: 'get',
- params: data
- })
- },
-
- //下单客户订单详情
- systemtoporderstatisticsdetail(data) {
- return request({
- url: '/system/top/order/statistics/detail',
- method: 'get',
- params: data
- })
- },
- //下单客户订单金额统计
- systemtoporderstatisticsmoney(data) {
- return request({
- url: '/system/top/order/statistics/money',
- method: 'get',
- params: data
- })
- },
- //下单客户订单数量统计
- systemtoporderstatisticsnum(data) {
- return request({
- url: '/system/top/order/statistics/num',
- method: 'get',
- params: data
- })
- },
- //下单客户订单走势图
- systemtoporderstatisticsview(data) {
- return request({
- url: '/system/top/order/statistics/view',
- method: 'get',
- params: data
- })
- },
- //下单客户
- systemtoporderstatisticscustomer(data) {
- return request({
- url: '/system/top/order/statistics/customer',
- method: 'get',
- params: data
- })
- },
- //订单总计
- systemtoporderstatisticstotal(data) {
- return request({
- url: '/system/top/order/statistics/total',
- method: 'get',
- params: data
- })
- },
-
- //公海过期预警
- systemtopordersharedcertstats(data) {
- return request({
- url: '/system/top/order/shared/cert/stats',
- method: 'get',
- params: data
- })
- },
- //客户转化排名
- systemtopordersharedconversionrate(data) {
- return request({
- url: '/system/top/order/shared/conversion/rate',
- method: 'get',
- params: data
- })
- },
- //公海客户列表
- systemtopordersharedcustomerlist(data) {
- return request({
- url: '/system/top/order/shared/customer/list',
- method: 'get',
- params: data
- })
- },
- //公海总客户
- systemtopordersharedcustomerstats(data) {
- return request({
- url: '/system/top/order/shared/customer/stats',
- method: 'get',
- params: data
- })
- },
- //城市转化排行
- systemtopordersharedorderarea(data) {
- return request({
- url: '/system/top/order/shared/order/area',
- method: 'get',
- params: data
- })
- },
- //公海客户统计
- systemtopordersharedstatistics(data) {
- return request({
- url: '/system/top/order/shared/statistics',
- method: 'get',
- params: data
- })
- },
- //公海客户机构列表
- systemtopordersharedtenant(data) {
- return request({
- url: '/system/top/order/shared/tenant',
- method: 'get',
- params: data
- })
- },
- //公海客户业务员列表
- systemtopordersharedsale(data) {
- return request({
- url: '/system/top/order/shared/sale',
- method: 'get',
- params: data
- })
- },
- //公海客户详情
- systemtopordersharedcustomerorder(data) {
- return request({
- url: '/system/top/order/shared/customer/order',
- method: 'get',
- params: data
- })
- },
- }
|