54 lines
1.1 KiB
JavaScript
54 lines
1.1 KiB
JavaScript
import request from '@/utils/request'
|
|
|
|
// 查询seg商户户提现记录列表
|
|
export function listSegchk_store_cash(query) {
|
|
return request({
|
|
url: '/segchk/segchk_store_cash/list',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
// 查询seg商户户提现记录详细
|
|
export function getSegchk_store_cash(cashId) {
|
|
return request({
|
|
url: '/segchk/segchk_store_cash/' + cashId,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
// 新增seg商户户提现记录
|
|
export function addSegchk_store_cash(data) {
|
|
return request({
|
|
url: '/segchk/segchk_store_cash',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 修改seg商户户提现记录
|
|
export function updateSegchk_store_cash(data) {
|
|
return request({
|
|
url: '/segchk/segchk_store_cash',
|
|
method: 'put',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 删除seg商户户提现记录
|
|
export function delSegchk_store_cash(cashIds) {
|
|
return request({
|
|
url: '/segchk/segchk_store_cash/' + cashIds,
|
|
method: 'delete'
|
|
})
|
|
}
|
|
|
|
// 导出seg商户户提现记录
|
|
export function exportSegchk_store_cash(query) {
|
|
return request({
|
|
url: '/segchk/segchk_store_cash/export',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|