mall-uniapp/sheep/api/trade/config.js

17 lines
290 B
JavaScript
Raw Permalink Normal View History

2023-12-13 15:45:55 +00:00
import request from '@/sheep/request';
const TradeConfigApi = {
// 获得交易配置
getTradeConfig: () => {
return request({
url: `/trade/config/get`,
2023-12-13 15:45:55 +00:00
method: 'GET',
custom: {
showLoading: false,
},
2023-12-13 15:45:55 +00:00
});
},
};
export default TradeConfigApi;