approveStore.js 877 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. import { axios } from '@/utils/request'
  2. // 客户类型列表 分页
  3. export const xprhStoreApplyQueryPage = (params) => {
  4. const url = `/xprhStoreApply/queryPage/${params.pageNo}/${params.pageSize}`
  5. delete params.pageNo
  6. delete params.pageSize
  7. return axios({
  8. url: url,
  9. data: params,
  10. method: 'post',
  11. headers:{
  12. 'module': encodeURIComponent('列表查询')
  13. }
  14. })
  15. }
  16. // 审核
  17. export const xprhStoreApplyAudit = (params) => {
  18. const url = `/xprhStoreApply/audit`
  19. return axios({
  20. url: url,
  21. data: params,
  22. method: 'post',
  23. headers:{
  24. 'module': encodeURIComponent('审核')
  25. }
  26. })
  27. }
  28. // 门店认证详情
  29. export const xprhStoreApplyDetail = (params) => {
  30. return axios({
  31. url: `/xprhStoreApply/findBySn/${params.sn}`,
  32. method: 'get',
  33. headers:{
  34. 'module': encodeURIComponent('门店认证详情')
  35. }
  36. })
  37. }