import { http } from '../../utils/http' export const getMarketSetting = (data) => { return http({ method: 'POST', url: '/api/my/getQuotationSetting', data: data, }) } export const updateMarketSetting = (data) => { return http({ method: 'POST', url: '/api/my/updateQuotationSetting', data: data, }) }