1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
| import request from "@/common/untils/request.js"
|
| // 报价单列表
| export function getQuotationList(data) {
| return request({
| url: "/api/quotation/list",
| method: "post",
| data
| })
| }
| // 添加报价单
| export function getAddQuotation(data) {
| return request({
| url: "/api/quotation/add",
| method: "post",
| data
| })
| }
| // 删除报价单
| export function getDelQuotation(data) {
| return request({
| url: "/api/quotation/delete",
| method: "delete",
| data
| })
| }
| // 更新报价单
| export function getUpdateQuotation(data) {
| return request({
| url: "/api/quotation/update",
| method: "put",
| data
| })
| }
|
|