yaowanxin
2025-10-21 0eed6d67c525f1f32844e4fe0350454071ce0229
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
39
40
41
42
43
// 销售台账页面接口
import request from "@/utils/request";
 
// 分页查询
export function listPage(query) {
    return request({
        url: "/inboundManagement/listPage",
        method: "get",
        params: query,
    });
}
 
export function listPageCopy(query) {
    return request({
        url: "/inboundManagement/listPage",
        method: "get",
        params: query,
    });
}
// 新增
export function add(data) {
    return request({
        url: "/inboundManagement/add",
        method: "post",
        data
    });
}
// 修改
export function update(data) {
    return request({
        url: "/inboundManagement/update",
        method: "post",
        data
    });
}
// 删除销售台账
export function del(data) {
    return request({
        url: "/inboundManagement/del",
        method: "delete",
        data
    });
}