【前端】云工厂的纸掌柜app
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.

40 lines
813 B

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
})
}