freeQueuing.js 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. import request from '@/utils/request'
  2. // api docs: https://www.showdoc.com.cn/2275703555064913/11558417901706052
  3. // 查询免单列表
  4. export function bagetFreeQueuingListApi(params) {
  5. return request({
  6. url: '/platform-participation-free/getAll',
  7. method: 'get',
  8. params
  9. })
  10. }
  11. // 查询排队免单列表详情
  12. export function getFreeQueuingDeatilApi(params) {
  13. return request({
  14. url: '/platform-participation-free/getById',
  15. method: 'get',
  16. params
  17. })
  18. }
  19. // 发起免单: /platform-participation-free/create
  20. export function createFreeQueuingApi(data) {
  21. return request({
  22. url: '/platform-participation-free/create',
  23. method: 'post',
  24. data
  25. })
  26. }
  27. // 修改免单 /platform-participation-free/updateById
  28. export function updateFreeQueuingApi(data) {
  29. return request({
  30. url: '/platform-participation-free/updateById',
  31. method: 'post',
  32. data
  33. })
  34. }
  35. // 删除免单: /platform-participation-free/deleteById
  36. export function deleteFreeQueuingDeatilApi(params) {
  37. return request({
  38. url: '/platform-participation-free/deleteById',
  39. method: 'DELETE',
  40. params
  41. })
  42. }
  43. // 查询免单池列表
  44. export function getFreeQueuingPoolListApi(params) {
  45. return request({
  46. url: '/platform-participation-free/getPoolAll',
  47. method: 'get',
  48. params
  49. })
  50. }
  51. // 查询免单池详情
  52. export function getFreeQueuingPoolDeatilApi(params) {
  53. return request({
  54. url: '/platform-participation-free/getPoolById',
  55. method: 'get',
  56. params
  57. })
  58. }