financial.ts 465 B

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