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
import request from '@/utils/request'
// 创建
export function createCurrency(data) {
return request({
url: '/ecw/currency/create',
method: 'post',
data: data
})
}
// 更新
export function updateCurrency(data) {
return request({
url: '/ecw/currency/update',
method: 'put',
data: data
})
}
// 更新
export function updateCurrencyStatus(data) {
return request({
url: '/ecw/currency/updateStatus',
method: 'put',
data: data
})
}
// 删除
export function deleteCurrency(id) {
return request({
url: '/ecw/currency/delete?id=' + id,
method: 'delete'
})
}
// 获得
export function getCurrency(id) {
return request({
url: '/ecw/currency/get?id=' + id,
method: 'get'
})
}
// 获得分页
export function getCurrencyPage(query) {
return request({
url: '/ecw/currency/page',
method: 'get',
params: query
})
}
// 获取所有
export function getCurrencyList() {
return request({
url: '/ecw/currency/list',
method: 'get'
})
}
// 导出 Excel
export function exportCurrencyExcel(query) {
return request({
url: '/ecw/currency/export-excel',
method: 'get',
params: query,
responseType: 'blob'
})
}