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.

14 lines
326 B

7 months ago
  1. import request from '@/sheep/request';
  2. const PayChannelApi = {
  3. // 获得指定应用的开启的支付渠道编码列表
  4. getEnableChannelCodeList: (appId) => {
  5. return request({
  6. url: '/pay/channel/get-enable-code-list',
  7. method: 'GET',
  8. params: { appId }
  9. });
  10. },
  11. };
  12. export default PayChannelApi;