123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- import { axios } from '@/utils/request'
- export const verifyAccountChangeList = (params) => {
- const url = `/verifyAccountChange/queryPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('列表查询')
- }
- })
- }
- export const verifyAccountChangeDealerBalanceList = (params) => {
- const url = `/verifyAccountChange/queryDealerBalancePage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('经销商余额列表查询')
- }
- })
- }
- export const verifyfyAccountQueryDealerBalanceDetailPage = (params) => {
- const url = `/verifyAccountChange/queryDealerBalanceDetailPage/${params.pageNo}/${params.pageSize}`
- delete params.pageNo
- delete params.pageSize
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('对账余额明细列表查询')
- }
- })
- }
- export const verifyfyAccountQueryDealerBalanceDetailCount = (params) => {
- const url = `/verifyAccountChange/queryDealerBalanceDetailCount`
- return axios({
- url: url,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('对账余额明细统计')
- }
- })
- }
- export const verifyAccountChangeSave = params => {
- return axios({
- url: '/verifyAccountChange/save',
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('创建调账')
- }
- })
- }
- export const verifyAccountChangeDel = params => {
- return axios({
- url: `/verifyAccountChange/deleteBySn/${params.sn}`,
- data: {},
- method: 'post',
- headers: {
- 'module': encodeURIComponent('删除调账')
- }
- })
- }
- export const verifyAccountChangeDetail = params => {
- return axios({
- url: `/verifyAccountChange/queryBySn/${params.sn}`,
- data: {},
- method: 'post',
- headers: {
- 'module': encodeURIComponent('查看调账详情')
- }
- })
- }
-
- export const verifyAcountBillSubmit = params => {
- return axios({
- url: `/verifyAccountChange/submit`,
- data: params,
- method: 'post',
- headers: {
- 'module': encodeURIComponent('调账提交')
- }
- })
- }
|