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.
55 lines
927 B
55 lines
927 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
|
|
})
|
|
}
|
|
|
|
// 导出业绩归属
|
|
export const exportPerformance = (data) => {
|
|
return http({
|
|
method: 'POST',
|
|
url: '/export/exportPerformance',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 导出资金流水
|
|
export const exportFunds = (data) => {
|
|
return http({
|
|
method: 'POST',
|
|
url: '/export/exportFunds',
|
|
data
|
|
})
|
|
}
|
|
|
|
// 业绩调整
|
|
export const adjustment = (data) => {
|
|
return http({
|
|
method: 'POST',
|
|
url: '/cashCollection/adjust',
|
|
data
|
|
})
|
|
}
|