| 1234567891011 |
- import { post } from '@/utils/request';
- export const financialApi = {
- // 入金金额统计
- depositAmountStatistics: (params = {}) => post('/finance/deposit/amount/statictics', params),
- // 出金金额统计
- withdrawAmountStatistics: (params = {}) => post('/finance/withdraw/amount/statictics', params),
- // 根据条件查看拒绝列表-用于下拉和选择展示理由
- reasonsRefusalList: (params = {}) => post('/reasons/refusal/list', params),
- };
|