You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import request from '@/axios';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 获取商家结算单列表
|
|
|
|
* @param {*} data
|
|
|
|
* @returns
|
|
|
|
*/
|
|
|
|
export const postPageList = data => {
|
|
|
|
return request({
|
|
|
|
url: '/api/logpm-statisticsdata/merchantBalance/pageList',
|
|
|
|
method: 'post',
|
|
|
|
data,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 提交结算信息
|
|
|
|
* @param {*} data
|
|
|
|
* @returns
|
|
|
|
*/
|
|
|
|
export const postCheckBalance = data => {
|
|
|
|
return request({
|
|
|
|
url: '/api/logpm-statisticsdata/merchantStatistics/checkBalance',
|
|
|
|
method: 'post',
|
|
|
|
data,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 确认结算信息
|
|
|
|
* @param {*} data
|
|
|
|
* @returns
|
|
|
|
*/
|
|
|
|
export const postEnterBalance = data => {
|
|
|
|
return request({
|
|
|
|
url: '/api/logpm-statisticsdata/merchantBalance/enterBalance',
|
|
|
|
method: 'post',
|
|
|
|
data,
|
|
|
|
});
|
|
|
|
};
|