4 天以前 fb6e4a0041575dfacc4da9f8fc66d9a3d1f8a6b8
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,
  });
}