collectionManagement.js 558 B

12345678910111213141516171819202122232425
  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 profitStatistics(params) {
  20. return http.request({
  21. url: '/blade-purchase-sales/appParts/profitStatistics',
  22. method: 'get',
  23. params
  24. })
  25. }