article_z.js 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. // 文章
  2. import axios from "../util/ajax";
  3. export default {
  4. // 订单查询
  5. queryProductOrderSearchByPage(params) {
  6. return axios.get(`/opt/product/order/search/page`, {params})
  7. },
  8. // 泊位列表
  9. queryBerthListByPage(params) {
  10. return axios.get(`/opt/berth/list/page`, {params})
  11. },
  12. // 车场
  13. querySelectParkListByPage(params) {
  14. return axios.get(`/opt/common/select/park`, {params})
  15. },
  16. // 收费员
  17. querySelectTollmanListByPage(params) {
  18. return axios.get(`/opt/common/select/tollman`, {params})
  19. },
  20. // 异常管理——获取抬杆记录分页
  21. queryExceptionHandingLiftByPage(params) {
  22. return axios.get(`/opt/exception/handing/lift/page`, {params})
  23. },
  24. // 异常管理——添加抬杆记录
  25. addExceptionHandingLift(params) {
  26. return axios.post(`/opt/exception/handing/lift/add`, params)
  27. },
  28. // 异常管理——编辑抬杆记录
  29. editExceptionHandingLift(params) {
  30. return axios.post(`/opt/exception/handing/lift/edit`, params)
  31. },
  32. // 异常管理——删除抬杆记录
  33. deleteExceptionHandingLift(params) {
  34. return axios.post(`/opt/exception/handing/lift/delete`, params)
  35. },
  36. // 异常管理——获取特殊放行记录分页
  37. queryExceptionHandingSpecialByPage(params) {
  38. return axios.get(`/opt/exception/handing/special/page`, {params})
  39. },
  40. // 异常管理——添加特殊放行记录
  41. addExceptionHandingSpecial(params) {
  42. return axios.post(`/opt/exception/handing/special/add`, params)
  43. },
  44. // 异常管理——编辑特殊放行记录
  45. editExceptionHandingSpecial(params) {
  46. return axios.post(`/opt/exception/handing/special/edit`, params)
  47. },
  48. // 异常管理——删除特殊放行记录
  49. deleteExceptionHandingSpecial(params) {
  50. return axios.post(`/opt/exception/handing/special/delete`, params)
  51. },
  52. // 异常管理——获取车牌修正记录分页
  53. queryExceptionHandingCorrectionByPage(params) {
  54. return axios.get(`/opt/exception/handing/correction/page`, {params})
  55. },
  56. // 异常管理——添加车牌修正记录
  57. addExceptionHandingCorrection(params) {
  58. return axios.post(`/opt/exception/handing/correction/add`, params)
  59. },
  60. // 异常管理——编辑车牌修正记录
  61. editExceptionHandingCorrection(params) {
  62. return axios.post(`/opt/exception/handing/correction/edit`, params)
  63. },
  64. // 异常管理——删除车牌修正记录
  65. deleteExceptionHandingCorrection(params) {
  66. return axios.post(`/opt/exception/handing/correction/delete`, params)
  67. },
  68. // 异常管理——获取僵尸车清理记录分页
  69. queryExceptionHandingCleanByPage(params) {
  70. return axios.get(`/opt/exception/handing/clean/page`, {params})
  71. },
  72. // 异常管理——添加车牌修正记录
  73. addExceptionHandingClean(params) {
  74. return axios.post(`/opt/exception/handing/clean/add`, params)
  75. },
  76. // 异常管理——编辑车牌修正记录
  77. editExceptionHandingClean(params) {
  78. return axios.post(`/opt/exception/handing/clean/edit`, params)
  79. },
  80. // 异常管理——删除车牌修正记录
  81. deleteExceptionHandingClean(params) {
  82. return axios.post(`/opt/exception/handing/clean/delete`, params)
  83. },
  84. }