pdd-info.js
984 Bytes
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
import request from "@/utils/request";
// GET
// /customerDeclareData/info/{customerDeclareDataId}
// 查询客户申报数据信息
export function getCustomerDeclareDataId({ customerDeclareDataId }) {
return request({
url: `/bus-customer/customerDeclareData/info/${customerDeclareDataId}`,
method: "get",
});
}
// POST
// /customerDeclareData/search
// 查询客户申报数据列表
export function getPddInfo(data) {
return request({
url: "/bus-customer/customerDeclareData/search",
method: "post",
data: data,
});
}
// GET
// /customerDeclareData/resend/{id}
// 重新发送申报数据
export function getResend({ id }) {
return request({
url: `/bus-customer/customerDeclareData/resend/${id}`,
method: "get",
});
}
//提交广州客户申报数据异步导出任务
export function getSubmitExportTask(data) {
return request({
url: `/bus-customer/customerDeclareData/submitExportTask`,
method: "post",
data: data,
});
}