import http from '@/util/http.js' //查询资金流水 export const Moneyfunds = (data) => { return http({ method: 'POST', url: '/Money/funds', data }) } // 新增线上退款 export const refundOnline = (data) => { return http({ method: 'POST', url: '/Money/addOnline', data }) } // 查询业绩归属 export const performanceSelect = (data) => { return http({ method: 'POST', url: '/cashCollection/performanceSelect', data }) }