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
35
36
37
38
| // 发货台账页面接口
| import request from "@/utils/request";
|
| // 分页查询
| export function deliveryLedgerListPage(query) {
| return request({
| url: "/shippingInfo/listPage",
| method: "get",
| params: query,
| });
| }
|
| // 修改发货台账
| export function addOrUpdateDeliveryLedger(query) {
| return request({
| url: "/shippingInfo/update",
| method: "post",
| data: query,
| });
| }
|
| // 删除发货台账
| export function delDeliveryLedger(query) {
| return request({
| url: "/shippingInfo/delete",
| method: "delete",
| data: query,
| });
| }
|
| // 新增发货信息
| export function addShippingInfo(data) {
| return request({
| url: "/shippingInfo/add",
| method: "post",
| data,
| });
| }
|
|