feat: 支付功能迁移(初稿)

This commit is contained in:
dhb52
2023-08-06 23:25:07 +08:00
parent 64b40e7fdf
commit a6eab3cc9a
14 changed files with 1155 additions and 58 deletions

View File

@ -76,3 +76,9 @@ export const exportApp = (params: AppExportReqVO) => {
export const getAppListByMerchantId = (merchantId: number) => {
return request.get({ url: '/pay/app/list-merchant-id', params: { merchantId: merchantId } })
}
export const getAppList = () => {
return request.get({
url: '/pay/app/list'
})
}