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
import request from '@/utils/request'
// 创建E-Cash汇率单位
export function createCurrencyEcash(data) {
return request({
url: '/ecw/currency-ecash/create',
method: 'post',
data: data
})
}
// 更新E-Cash汇率单位
export function updateCurrencyEcash(data) {
return request({
url: '/ecw/currency-ecash/update',
method: 'put',
data: data
})
}
// 更新E-Cash汇率单位
export function updateCurrencyEcashAll(data) {
console.log(data);
return request({
url: '/ecw/currency-ecash/updateAll',
method: 'put',
data: data
})
}
// 删除E-Cash汇率单位
export function deleteCurrencyEcash(id) {
return request({
url: '/ecw/currency-ecash/delete?id=' + id,
method: 'delete'
})
}
// 获得E-Cash汇率单位
export function getCurrencyEcash(id) {
return request({
url: '/ecw/currency-ecash/get?id=' + id,
method: 'get'
})
}
// 获得E-Cash汇率单位分页
export function getCurrencyEcashPage(query) {
return request({
url: '/ecw/currency-ecash/page',
method: 'get',
params: query
})
}
// 导出E-Cash汇率单位 Excel
export function exportCurrencyEcashExcel(query) {
return request({
url: '/ecw/currency-ecash/export-excel',
method: 'get',
params: query,
responseType: 'blob'
})
}