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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
|
import { defHttp } from '@/utils/http/axios'
|
|
|
|
|
|
|
|
export interface AppVO {
|
|
|
|
id: number
|
|
|
|
name: string
|
|
|
|
status: number
|
|
|
|
remark: string
|
|
|
|
payNotifyUrl: string
|
|
|
|
refundNotifyUrl: string
|
|
|
|
merchantId: number
|
|
|
|
merchantName: string
|
|
|
|
createTime: Date
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface AppPageReqVO extends PageParam {
|
|
|
|
name?: string
|
|
|
|
status?: number
|
|
|
|
remark?: string
|
|
|
|
payNotifyUrl?: string
|
|
|
|
refundNotifyUrl?: string
|
|
|
|
merchantName?: string
|
|
|
|
createTime?: Date[]
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface AppExportReqVO {
|
|
|
|
name?: string
|
|
|
|
status?: number
|
|
|
|
remark?: string
|
|
|
|
payNotifyUrl?: string
|
|
|
|
refundNotifyUrl?: string
|
|
|
|
merchantName?: string
|
|
|
|
createTime?: Date[]
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface AppUpdateStatusReqVO {
|
|
|
|
id: number
|
|
|
|
status: number
|
|
|
|
}
|
|
|
|
|
|
|
|
// 查询列表支付应用
|
|
|
|
export const getAppPageApi = (params: AppPageReqVO) => {
|
|
|
|
return defHttp.get({ url: '/pay/app/page', params })
|
|
|
|
}
|
|
|
|
|
|
|
|
// 查询详情支付应用
|
|
|
|
export const getAppApi = (id: number) => {
|
|
|
|
return defHttp.get({ url: '/pay/app/get?id=' + id })
|
|
|
|
}
|
|
|
|
|
|
|
|
// 新增支付应用
|
|
|
|
export const createAppApi = (data: AppVO) => {
|
|
|
|
return defHttp.post({ url: '/pay/app/create', data })
|
|
|
|
}
|
|
|
|
|
|
|
|
// 修改支付应用
|
|
|
|
export const updateAppApi = (data: AppVO) => {
|
|
|
|
return defHttp.put({ url: '/pay/app/update', data })
|
|
|
|
}
|
|
|
|
|
|
|
|
// 支付应用信息状态修改
|
|
|
|
export const changeAppStatusApi = (data: AppUpdateStatusReqVO) => {
|
|
|
|
return defHttp.put({ url: '/pay/app/update-status', data })
|
|
|
|
}
|
|
|
|
|
|
|
|
// 删除支付应用
|
|
|
|
export const deleteAppApi = (id: number) => {
|
|
|
|
return defHttp.delete({ url: '/pay/app/delete?id=' + id })
|
|
|
|
}
|
|
|
|
|
|
|
|
// 导出支付应用
|
|
|
|
export const exportAppApi = (params: AppExportReqVO) => {
|
|
|
|
return defHttp.download({ url: '/pay/app/export-excel', params }, '支付应用.xls')
|
|
|
|
}
|
|
|
|
|
|
|
|
// 根据商ID称搜索应用列表
|
|
|
|
export const getAppListByMerchantIdApi = (merchantId: number) => {
|
|
|
|
return defHttp.get({ url: '/pay/app/list-merchant-id', params: { merchantId: merchantId } })
|
|
|
|
}
|