| | |
| | | import request from "@/utils/request"; |
| | | |
| | | // 分页查询报价单列表 |
| | | export function quotationList(query) { |
| | | export function getQuotationList(query) { |
| | | return request({ |
| | | url: "/sales/quotation/list", |
| | | method: "get", |
| | |
| | | export function updateQuotation(data) { |
| | | return request({ |
| | | url: "/sales/quotation/update", |
| | | method: "put", |
| | | method: "post", |
| | | data: data, |
| | | }); |
| | | } |
| | |
| | | responseType: "blob", |
| | | }); |
| | | } |
| | | |
| | | // 删除文件 |
| | | // salesQuotationFile/del |
| | | export function deleteFile(data) { |
| | | return request({ |
| | | url: "/salesQuotationFile/del", |
| | | method: "delete", |
| | | data: data, |
| | | }); |
| | | } |