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

17 lines
290 B
JavaScript
Raw Permalink Normal View History

2025-03-02 13:38:14 +08:00
import request from '@/sheep/request';
const TradeConfigApi = {
// 获得交易配置
getTradeConfig: () => {
return request({
url: `/trade/config/get`,
method: 'GET',
custom: {
showLoading: false,
},
});
},
};
export default TradeConfigApi;