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.
 
 
 
 

28 lines
481 B

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
})
}