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.

71 lines
1.6 KiB

import { defHttp } from '@/utils/http/axios'
export interface ChannelVO {
id: number
code: string
config: string
status: number
remark: string
feeRate: number
merchantId: number
appId: number
createTime: Date
}
export interface ChannelPageReqVO extends PageParam {
code?: string
status?: number
remark?: string
feeRate?: number
merchantId?: number
appId?: number
config?: string
createTime?: Date[]
}
export interface ChannelExportReqVO {
code?: string
status?: number
remark?: string
feeRate?: number
merchantId?: number
appId?: number
config?: string
createTime?: Date[]
}
// 查询列表支付渠道
export function getChannelPage(params: ChannelPageReqVO) {
return defHttp.get({ url: '/pay/channel/page', params })
}
// 查询详情支付渠道
export function getChannel(merchantId: number, appId: string, code: string) {
const params = {
merchantId: merchantId,
appId: appId,
code: code
}
return defHttp.get({ url: '/pay/channel/get-channel', params: params })
}
// 新增支付渠道
export function createChannel(data: ChannelVO) {
return defHttp.post({ url: '/pay/channel/create', data })
}
// 修改支付渠道
export function updateChannel(data: ChannelVO) {
return defHttp.put({ url: '/pay/channel/update', data })
}
// 删除支付渠道
export function deleteChannel(id: number) {
return defHttp.delete({ url: '/pay/channel/delete?id=' + id })
}
// 导出支付渠道
export function exportChannel(params: ChannelExportReqVO) {
return defHttp.download({ url: '/pay/channel/export-excel', params }, '支付渠道.xls')
}