config.js 290 B

12345678910111213141516
  1. import request from '@/sheep/request';
  2. const TradeConfigApi = {
  3. // 获得交易配置
  4. getTradeConfig: () => {
  5. return request({
  6. url: `/trade/config/get`,
  7. method: 'GET',
  8. custom: {
  9. showLoading: false,
  10. },
  11. });
  12. },
  13. };
  14. export default TradeConfigApi;