2024-08-14 18:01:44 +08:00
|
|
|
import request from '@/utils/request';
|
|
|
|
|
|
|
|
export const purchaseProductOfferLists = (data) => {
|
|
|
|
return request.get('/purchase_product_offer/purchaseproductoffer/lists', data);
|
2024-08-14 22:59:44 +08:00
|
|
|
}
|
|
|
|
//报价单提交
|
|
|
|
export const purchaseProductOfferUpdate = (data) => {
|
|
|
|
return request.post('/purchase_product_offer/purchaseproductoffer/offer_update', data);
|
2024-10-11 22:40:45 +08:00
|
|
|
}
|
|
|
|
export const purchaseProductOfferOutboundFloatingLv = (data) => {
|
|
|
|
return request.get('/purchase_product_offer/purchaseproductoffer/outbound_floating_lv', data);
|
2024-12-25 17:56:06 +08:00
|
|
|
}
|
|
|
|
export const supplierListApi = (data) => {
|
|
|
|
return request.get('/purchase_product_offer/purchaseproductoffer/supplier', data);
|
2024-08-14 18:01:44 +08:00
|
|
|
}
|