1234567891011121314151617181920212223242526272829303132333435363738 |
- import { axios } from '@/utils/request'
- // 客户类型列表 分页
- export const xprhStoreApplyQueryPage = (params) => {
- const url = `/xprhStoreApply/queryPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers:{
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- // 审核
- export const xprhStoreApplyAudit = (params) => {
- const url = `/xprhStoreApply/audit`
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers:{
- 'module': encodeURIComponent('审核')
- }
- })
- }
- // 门店认证详情
- export const xprhStoreApplyDetail = (params) => {
- return axios({
- url: `/xprhStoreApply/findBySn/${params.sn}`,
- method: 'get',
- headers:{
- 'module': encodeURIComponent('门店认证详情')
- }
- })
- }
|