You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
481 B

2 months ago
1 month ago
  1. import http from '@/util/http.js'
  2. //查询资金流水
  3. export const Moneyfunds = (data) => {
  4. return http({
  5. method: 'POST',
  6. url: '/Money/funds',
  7. data
  8. })
  9. }
  10. // 新增线上退款
  11. export const refundOnline = (data) => {
  12. return http({
  13. method: 'POST',
  14. url: '/Money/addOnline',
  15. data
  16. })
  17. }
  18. // 查询业绩归属
  19. export const performanceSelect = (data) => {
  20. return http({
  21. method: 'POST',
  22. url: '/cashCollection/performanceSelect',
  23. data
  24. })
  25. }