mirror of
https://gitee.com/hhyykk/ipms-sjy-ui.git
synced 2025-06-18 22:32:00 +08:00
79 lines
1.8 KiB
TypeScript
79 lines
1.8 KiB
TypeScript
import request from '@/config/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 request.get({ url: '/pay/app/page', params })
|
|
}
|
|
|
|
// 查询详情支付应用
|
|
export const getAppApi = (id: number) => {
|
|
return request.get({ url: '/pay/app/get?id=' + id })
|
|
}
|
|
|
|
// 新增支付应用
|
|
export const createAppApi = (data: AppVO) => {
|
|
return request.post({ url: '/pay/app/create', data })
|
|
}
|
|
|
|
// 修改支付应用
|
|
export const updateAppApi = (data: AppVO) => {
|
|
return request.put({ url: '/pay/app/update', data })
|
|
}
|
|
|
|
// 支付应用信息状态修改
|
|
export const changeAppStatusApi = (data: AppUpdateStatusReqVO) => {
|
|
return request.put({ url: '/pay/app/update-status', data: data })
|
|
}
|
|
|
|
// 删除支付应用
|
|
export const deleteAppApi = (id: number) => {
|
|
return request.delete({ url: '/pay/app/delete?id=' + id })
|
|
}
|
|
|
|
// 导出支付应用
|
|
export const exportAppApi = (params: AppExportReqVO) => {
|
|
return request.download({ url: '/pay/app/export-excel', params })
|
|
}
|
|
|
|
// 根据商ID称搜索应用列表
|
|
export const getAppListByMerchantIdApi = (merchantId: number) => {
|
|
return request.get({ url: '/pay/app/list-merchant-id', params: { merchantId: merchantId } })
|
|
}
|