Rap 原分销系统代码Web
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.

60d97b0e32ac9ca5a5383ffdb9a63530a1f1f4de.svn-base 742B

пре 8 месеци
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. import request from '@/utils/request'
  2. export function getList(data) {
  3. return request({
  4. url: 'api/dhPay/list',
  5. method: 'post',
  6. data
  7. })
  8. }
  9. export function getBuyerList(data){
  10. return request({
  11. url:'api/ctBuyer/list',
  12. method:'post',
  13. data
  14. })
  15. }
  16. export function add(data) {
  17. return request({
  18. url: 'api/dhPay/add',
  19. method: 'post',
  20. data
  21. })
  22. }
  23. export function delById(data) {
  24. return request({
  25. url: 'api/dhPay/delete',
  26. method: 'post',
  27. data
  28. })
  29. }
  30. export function getById(data) {
  31. return request({
  32. url: 'api/dhPay/getById',
  33. method: 'post',
  34. data
  35. })
  36. }
  37. export function getBuyerById(data) {
  38. return request({
  39. url: 'api/ctBuyer/getById',
  40. method: 'post',
  41. data
  42. })
  43. }