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.

5431582dcecbaff1b268315ba591e28d9862d715.svn-base 987B

5 月之前
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. import request from '@/utils/request'
  2. export function getList(data) {
  3. return request({
  4. url: 'api/ctBuyer/list',
  5. method: 'post',
  6. data
  7. })
  8. }
  9. export function getVpnList(data){
  10. return request({
  11. url:'api/ctVpn/list',
  12. method:'post',
  13. data
  14. })
  15. }
  16. export function getCardList(data){
  17. return request({
  18. url:'api/ctCard/list',
  19. method:'post',
  20. data
  21. })
  22. }
  23. export function add(data) {
  24. return request({
  25. url: 'api/ctBuyer/add',
  26. method: 'post',
  27. data
  28. })
  29. }
  30. export function delById(data) {
  31. return request({
  32. url: 'api/ctBuyer/delete',
  33. method: 'post',
  34. data
  35. })
  36. }
  37. export function editById(data) {
  38. return request({
  39. url: 'api/ctBuyer/edit',
  40. method: 'post',
  41. data
  42. })
  43. }
  44. export function getById(data) {
  45. return request({
  46. url: 'api/ctBuyer/getById',
  47. method: 'post',
  48. data
  49. })
  50. }
  51. export function getBuyerById(data) {
  52. return request({
  53. url: 'api/ctBuyer/getBuyerById',
  54. method: 'post',
  55. data
  56. })
  57. }