zyejMAll-mobile/sheep/api/pay/channel.js

15 lines
371 B
JavaScript
Raw Normal View History

2024-08-07 10:31:42 +08:00
import request from '@/sheep/request';
const PayChannelApi = {
// 获得指定应用的开启的支付渠道编码列表
2024-10-30 18:49:19 +08:00
getEnableChannelCodeList: (appId, hideWalletPay) => {
2024-08-07 10:31:42 +08:00
return request({
url: '/pay/channel/get-enable-code-list',
method: 'GET',
2024-10-30 18:49:19 +08:00
params: { appId, hideWalletPay:hideWalletPay },
2024-08-07 10:31:42 +08:00
});
},
};
export default PayChannelApi;