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.

16 lines
290 B

7 months ago
  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;