config.js 301 B

123456789101112
  1. "use strict";
  2. const sheep_request_index = require("../../request/index.js");
  3. const TradeConfigApi = {
  4. // 获得交易配置
  5. getTradeConfig: () => {
  6. return sheep_request_index.request({
  7. url: `/trade/config/get`,
  8. method: "GET"
  9. });
  10. }
  11. };
  12. exports.TradeConfigApi = TradeConfigApi;