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

52 lines
1009 B

import http from '../utils/http/index.js'
// 交易大厅-报价
export function getEnterpriseList(data) {
return http.get(
{
url: '/base-paper-trading/get/supplier/enquiry-reply/wait-reply-list',
data
},
{ hideLoading: true }
)
}
// 交易大厅-订单
export function gettradingHallList(data) {
return http.get(
{
url: '/base-paper-trading/get/trading-hall/supplier-order-page',
data
},
{ hideLoading: true }
)
}
// 我的报价
export function getMyreplyList(data) {
return http.get(
{
url: '/base-paper-trading/get/my-reply-list',
data
},
{ hideLoading: true }
)
}
// 提交报价
export function updataEnquiryReply(data) {
return http.post({
url: '/base-paper-trading/update/enquiry-reply',
data
})
}
// 获取报价详情
export function enquiryReplyDetail(data) {
return http.get(
{
url: '/base-paper-trading/get/enquiry-reply-detail/'+data,
},
{ hideLoading: true }
)
}