Rap 原分销系统代码Web
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

42 wiersze
644B

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