Rap 原分销系统代码Web
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

74 行
1.1KB

  1. import request from '@/utils/request'
  2. export function getList(data) {
  3. return request({
  4. url: 'api/dhAddCar/list',
  5. method: 'post',
  6. data
  7. })
  8. }
  9. //export function getClickFarmList(data) {
  10. //return request({
  11. // url: 'api/clickFarming/list',
  12. // method: 'post',
  13. // data
  14. //})
  15. //}
  16. export function add(data) {
  17. return request({
  18. url: 'api/dhAddCar/add',
  19. method: 'post',
  20. data
  21. })
  22. }
  23. export function sureEditById(data) {
  24. return request({
  25. url: 'api/dhAddCar/edit',
  26. method: 'post',
  27. data
  28. })
  29. }
  30. export function getEditDetailById(data) {
  31. return request({
  32. url: 'api/dhAddCar/getEditDetailById',
  33. method: 'post',
  34. data
  35. })
  36. }
  37. export function delById(data) {
  38. return request({
  39. url: 'api/dhAddCar/delete',
  40. method: 'post',
  41. data
  42. })
  43. }
  44. export function orderSuccess(data) {
  45. return request({
  46. url: 'api/dhAddCar/orderSuccess',
  47. method: 'post',
  48. data
  49. })
  50. }
  51. export function toBeCatch(data) {
  52. return request({
  53. url: 'api/dhAddCar/toBeCatch',
  54. method: 'post',
  55. data
  56. })
  57. }
  58. export function wellReceive(data) {
  59. return request({
  60. url: 'api/dhAddCar/wellReceive',
  61. method: 'post',
  62. data
  63. })
  64. }