Rap 原分销系统代码Web
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8ff348a15089024bd9bd41b4439f58aab7481e0b.svn-base 741B

5 달 전
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. import request from '@/utils/request'
  2. export function getList(data) {
  3. return request({
  4. url: 'api/ctCompany/list',
  5. method: 'post',
  6. data
  7. })
  8. }
  9. export function add(data) {
  10. return request({
  11. url: 'api/ctCompany/add',
  12. method: 'post',
  13. data
  14. })
  15. }
  16. export function delById(data) {
  17. return request({
  18. url: 'api/ctCompany/delete',
  19. method: 'post',
  20. data
  21. })
  22. }
  23. export function editById(data) {
  24. return request({
  25. url: 'api/ctCompany/edit',
  26. method: 'post',
  27. data
  28. })
  29. }
  30. export function getById(data) {
  31. return request({
  32. url: 'api/ctCompany/getById',
  33. method: 'post',
  34. data
  35. })
  36. }
  37. export function getAll() {
  38. return request({
  39. url: 'api/ctCompany/getAll',
  40. method: 'get'
  41. })
  42. }