channel.js 620 B

123456789101112131415161718
  1. "use strict";
  2. const sheep_request_index = require("../../request/index.js");
  3. const PayChannelApi = {
  4. // 获得指定应用的开启的支付渠道编码列表
  5. getEnableChannelCodeList: (appId) => {
  6. return sheep_request_index.request({
  7. url: "/pay/channel/get-enable-code-list",
  8. method: "GET",
  9. params: { appId }
  10. });
  11. }
  12. };
  13. const __vite_glob_0_14 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
  14. __proto__: null,
  15. default: PayChannelApi
  16. }, Symbol.toStringTag, { value: "Module" }));
  17. exports.PayChannelApi = PayChannelApi;
  18. exports.__vite_glob_0_14 = __vite_glob_0_14;