apply.js 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. import request from '../utils/request.js';
  2. export function myApplyList(data) {
  3. return request({
  4. method: 'post',
  5. data: data,
  6. url: '/mobile/applyChargingStation/myApplyList'
  7. })
  8. }
  9. export function apply(data) {
  10. return request({
  11. method: 'post',
  12. data: data,
  13. url: '/mobile/applyChargingStation/apply'
  14. })
  15. }
  16. export function findDeviceByNo(data) {
  17. return request({
  18. method: 'post',
  19. data: data,
  20. url: "/mobile/applyChargingStation/findDeviceByNo"
  21. })
  22. }
  23. export function findDeviceByNoD(data) {
  24. return request({
  25. method: 'post',
  26. data: data,
  27. url: "/mobile/chargingDevice/findDeviceByNo"
  28. })
  29. }
  30. export function findVipUser(data) {
  31. return request({
  32. method: 'post',
  33. data: data,
  34. url: "/mobile/userStation/findVipUser"
  35. })
  36. }
  37. export function saveVipUser(data) {
  38. return request({
  39. method: 'post',
  40. data: data,
  41. url: "/mobile/userStation/saveVipUser"
  42. })
  43. }
  44. export function deleteVipUser(data) {
  45. return request({
  46. method: 'post',
  47. data: data,
  48. url: "/mobile/userStation/deleteVipUser"
  49. })
  50. }