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.
23 lines
473 B
23 lines
473 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 }
|
|
)
|
|
}
|
|
|