approveStore.js 661 B

1234567891011121314151617181920212223242526272829
  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. })
  12. }
  13. // 审核
  14. export const xprhStoreApplyAudit = (params) => {
  15. const url = `/xprhStoreApply/audit`
  16. return axios({
  17. url: url,
  18. data: params,
  19. method: 'post'
  20. })
  21. }
  22. // 门店认证详情
  23. export const xprhStoreApplyDetail = (params) => {
  24. return axios({
  25. url: `/xprhStoreApply/findBySn/${params.sn}`,
  26. method: 'get'
  27. })
  28. }