kakapay后台管理系统
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.
 
 
 
 

53 lines
1.1 KiB

import request from '@/utils/request'
// 查询卡商-银行卡列表
export function listCarddealerWithdrawCard(query) {
return request({
url: '/carddealer/carddealerWithdrawCard/list',
method: 'get',
params: query
})
}
// 查询卡商-银行卡详细
export function getCarddealerWithdrawCard(id) {
return request({
url: '/carddealer/carddealerWithdrawCard/' + id,
method: 'get'
})
}
// 新增卡商-银行卡
export function addCarddealerWithdrawCard(data) {
return request({
url: '/carddealer/carddealerWithdrawCard',
method: 'post',
data: data
})
}
// 修改卡商-银行卡
export function updateCarddealerWithdrawCard(data) {
return request({
url: '/carddealer/carddealerWithdrawCard',
method: 'put',
data: data
})
}
// 删除卡商-银行卡
export function delCarddealerWithdrawCard(id) {
return request({
url: '/carddealer/carddealerWithdrawCard/' + id,
method: 'delete'
})
}
// 导出卡商-银行卡
export function exportCarddealerWithdrawCard(query) {
return request({
url: '/carddealer/carddealerWithdrawCard/export',
method: 'get',
params: query
})
}