import http from '../utils/http/index.js' // 获取地图上的企业列表 export function getMapCompanyList(data) { return http.get( { url: '/base-paper-trading/get/customers/enterprise/address/distribution/list', data }, { hideLoading: true } ) } // 获取询价列表 export function getInquiryList(data) { return http.get( { url: '/base-paper-trading/get/customers/enquiry/to/quote/page', data }, { hideLoading: true } ) } // 根据id获取对应的企业信息 export function getCompanyInfo(data) { return http.get({ url: '/base-paper-trading/get/customers/enterprise/basic', data }) } /** * @param {Object} data :{filePath:'',fileType:'',fileName:''} */ export const upload = (data) => { return http.uploadFile({ data }) }