collectionManagement.js 702 B

12345678910111213141516171819202122232425262728293031323334
  1. import http from '@/http/api.js'
  2. //查询列表
  3. export function queryList(params) {
  4. return http.request({
  5. url: '/blade-purchase-sales/appParts/selectPageByCorp',
  6. method: 'get',
  7. params
  8. })
  9. }
  10. //查询全部客户
  11. export function corpsDescList(params) {
  12. return http.request({
  13. url: '/blade-client/corpsdesc/corpsDescList',
  14. method: 'get',
  15. params
  16. })
  17. }
  18. // 查询业务员
  19. export function gainUser(data) {
  20. return http.request({
  21. url: '/blade-user/client/gainUser',
  22. method: 'GET',
  23. data
  24. })
  25. }
  26. //查询待收款
  27. export function profitStatistics(params) {
  28. return http.request({
  29. url: '/blade-purchase-sales/appParts/profitStatistics',
  30. method: 'get',
  31. params
  32. })
  33. }