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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
import request from '@/utils/request'
// 创建产品价格
export function createProductPrice(data) {
return request({
url: '/ecw/product-price/create',
method: 'post',
data: data
})
}
// 更新产品价格
export function updateProductPrice(data) {
return request({
url: '/ecw/product-price/update',
method: 'put',
data: data
})
}
// 删除产品价格
export function deleteProductPrice(id) {
return request({
url: '/ecw/product-price/delete?id=' + id,
method: 'delete'
})
}
// 获得产品价格
export function getProductPrice(id) {
return request({
url: '/ecw/product-price/get?id=' + id,
method: 'get'
})
}
// 获得产品价格分页
export function getProductPricePage(query) {
return request({
url: '/ecw/product-price/page',
method: 'get',
params: query
})
}
// 导出产品价格 Excel
export function exportProductPriceExcel(query) {
return request({
url: '/ecw/product-price/export-excel',
method: 'get',
timeout: 3*60*1000,
params: query,
responseType: 'blob'
})
}
// 批量获得产品价格
export function getProductPriceList(query) {
return request({
url: '/ecw/product-price/list',
method: 'get',
params: query
})
}
// 批量修改产品价格
export function batchUpdateProductPrice(query) {
return request({
url: '/ecw/product-price/batchUpdate',
method: 'put',
data: query
})
}
// 批量拉黑
export function batchBlock(query) {
return request({
url: '/ecw/product-price/batchBlock',
method: 'get',
params: query
})
}
// 批量下架
export function batchOff(query) {
return request({
url: '/ecw/product-price/batchOff',
method: 'get',
params: query
})
}
export function getPriceSnapshotList(priceId){
return request({
url: '/ecw/product-price/priceSnapshotList',
method: 'get',
params: {priceId}
})
}
// 获得路线产品
export function getProductPriceGetPrice(query) {
return request({
url: '/ecw/product-price/getPrice',
method: 'get',
params: query
})
}
// 更新单询
export function updateOrderInquiry(data) {
return request({
url: '/ecw/product-price/updateOrderInquiry',
method: 'put',
data: data
})
}