huminmin
18 小时以前 650bf3a19ed3c6fd9d382353e6a3f79f3133ce7b
src/api/salesManagement/salesQuotation.js
@@ -2,7 +2,7 @@
import request from "@/utils/request";
// 分页查询报价单列表
export function quotationList(query) {
export function getQuotationList(query) {
  return request({
    url: "/sales/quotation/list",
    method: "get",
@@ -32,7 +32,7 @@
export function updateQuotation(data) {
  return request({
    url: "/sales/quotation/update",
    method: "put",
    method: "post",
    data: data,
  });
}