statistics.js 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. import request from '@/utils/request' //引入axios请求及拦截器
  2. export default {
  3. //机构订单金额统计
  4. systemtoporderstatisticsmoneyByTenant(data) {
  5. return request({
  6. url: '/system/top/order/statistics/moneyByTenant',
  7. method: 'get',
  8. params: data
  9. })
  10. },
  11. //机构订单数量统计
  12. systemtoporderstatisticsnumByTenant(data) {
  13. return request({
  14. url: '/system/top/order/statistics/numByTenant',
  15. method: 'get',
  16. params: data
  17. })
  18. },
  19. //机构走势图
  20. systemtoporderstatisticstenantView(data) {
  21. return request({
  22. url: '/system/top/order/statistics/tenantView',
  23. method: 'get',
  24. params: data
  25. })
  26. },
  27. //机构业务员列表
  28. systemtoporderstatisticstenantCreateList(data) {
  29. return request({
  30. url: '/system/top/order/statistics/tenantCreateList',
  31. method: 'get',
  32. params: data
  33. })
  34. },
  35. //下单机构订单详情列表
  36. systemtoporderstatisticstenantDetailList(data) {
  37. return request({
  38. url: '/system/top/order/statistics/tenantDetailList',
  39. method: 'get',
  40. params: data
  41. })
  42. },
  43. //业务层次订单金额统计
  44. systemtoporderstatisticsmoneyByBusiness(data) {
  45. return request({
  46. url: '/system/top/order/statistics/moneyByBusiness',
  47. method: 'get',
  48. params: data
  49. })
  50. },
  51. //业务层次订单数量统计
  52. systemtoporderstatisticsnumByBusiness(data) {
  53. return request({
  54. url: '/system/top/order/statistics/numByBusiness',
  55. method: 'get',
  56. params: data
  57. })
  58. },
  59. //数据分析业务层次列表
  60. systemtoporderstatisticsbusinessList(data) {
  61. return request({
  62. url: '/system/top/order/statistics/businessList',
  63. method: 'get',
  64. params: data
  65. })
  66. },
  67. //业务层次走势图
  68. systemtoporderstatisticsbusinessView(data) {
  69. return request({
  70. url: '/system/top/order/statistics/businessView',
  71. method: 'get',
  72. params: data
  73. })
  74. },
  75. //下单业务层次详情列表
  76. systemtoporderstatisticsbusinessDetailList(data) {
  77. return request({
  78. url: '/system/top/order/statistics/businessDetailList',
  79. method: 'get',
  80. params: data
  81. })
  82. },
  83. //下单客户订单详情
  84. systemtoporderstatisticsdetail(data) {
  85. return request({
  86. url: '/system/top/order/statistics/detail',
  87. method: 'get',
  88. params: data
  89. })
  90. },
  91. //下单客户订单金额统计
  92. systemtoporderstatisticsmoney(data) {
  93. return request({
  94. url: '/system/top/order/statistics/money',
  95. method: 'get',
  96. params: data
  97. })
  98. },
  99. //下单客户订单数量统计
  100. systemtoporderstatisticsnum(data) {
  101. return request({
  102. url: '/system/top/order/statistics/num',
  103. method: 'get',
  104. params: data
  105. })
  106. },
  107. //下单客户订单走势图
  108. systemtoporderstatisticsview(data) {
  109. return request({
  110. url: '/system/top/order/statistics/view',
  111. method: 'get',
  112. params: data
  113. })
  114. },
  115. //下单客户
  116. systemtoporderstatisticscustomer(data) {
  117. return request({
  118. url: '/system/top/order/statistics/customer',
  119. method: 'get',
  120. params: data
  121. })
  122. },
  123. //订单总计
  124. systemtoporderstatisticstotal(data) {
  125. return request({
  126. url: '/system/top/order/statistics/total',
  127. method: 'get',
  128. params: data
  129. })
  130. },
  131. //公海过期预警
  132. systemtopordersharedcertstats(data) {
  133. return request({
  134. url: '/system/top/order/shared/cert/stats',
  135. method: 'get',
  136. params: data
  137. })
  138. },
  139. //客户转化排名
  140. systemtopordersharedconversionrate(data) {
  141. return request({
  142. url: '/system/top/order/shared/conversion/rate',
  143. method: 'get',
  144. params: data
  145. })
  146. },
  147. //公海客户列表
  148. systemtopordersharedcustomerlist(data) {
  149. return request({
  150. url: '/system/top/order/shared/customer/list',
  151. method: 'get',
  152. params: data
  153. })
  154. },
  155. //公海总客户
  156. systemtopordersharedcustomerstats(data) {
  157. return request({
  158. url: '/system/top/order/shared/customer/stats',
  159. method: 'get',
  160. params: data
  161. })
  162. },
  163. //城市转化排行
  164. systemtopordersharedorderarea(data) {
  165. return request({
  166. url: '/system/top/order/shared/order/area',
  167. method: 'get',
  168. params: data
  169. })
  170. },
  171. //公海客户统计
  172. systemtopordersharedstatistics(data) {
  173. return request({
  174. url: '/system/top/order/shared/statistics',
  175. method: 'get',
  176. params: data
  177. })
  178. },
  179. //公海客户机构列表
  180. systemtopordersharedtenant(data) {
  181. return request({
  182. url: '/system/top/order/shared/tenant',
  183. method: 'get',
  184. params: data
  185. })
  186. },
  187. //公海客户业务员列表
  188. systemtopordersharedsale(data) {
  189. return request({
  190. url: '/system/top/order/shared/sale',
  191. method: 'get',
  192. params: data
  193. })
  194. },
  195. //公海客户详情
  196. systemtopordersharedcustomerorder(data) {
  197. return request({
  198. url: '/system/top/order/shared/customer/order',
  199. method: 'get',
  200. params: data
  201. })
  202. },
  203. }