53 lines
1.1 KiB
JavaScript
53 lines
1.1 KiB
JavaScript
import request from '@/utils/request'
|
|
|
|
// 查询seg商户余额信息列表
|
|
export function listSegchk_store_account(query) {
|
|
return request({
|
|
url: '/segchk/segchk_store_account/list',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
}
|
|
|
|
// 查询seg商户余额信息详细
|
|
export function getSegchk_store_account(accountId) {
|
|
return request({
|
|
url: '/segchk/segchk_store_account/' + accountId,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
// 新增seg商户余额信息
|
|
export function addSegchk_store_account(data) {
|
|
return request({
|
|
url: '/segchk/segchk_store_account',
|
|
method: 'post',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 修改seg商户余额信息
|
|
export function updateSegchk_store_account(data) {
|
|
return request({
|
|
url: '/segchk/segchk_store_account',
|
|
method: 'put',
|
|
data: data
|
|
})
|
|
}
|
|
|
|
// 删除seg商户余额信息
|
|
export function delSegchk_store_account(accountId) {
|
|
return request({
|
|
url: '/segchk/segchk_store_account/' + accountId,
|
|
method: 'delete'
|
|
})
|
|
}
|
|
|
|
// 导出seg商户余额信息
|
|
export function exportSegchk_store_account(query) {
|
|
return request({
|
|
url: '/segchk/segchk_store_account/export',
|
|
method: 'get',
|
|
params: query
|
|
})
|
|
} |