This commit is contained in:
shilin
2025-02-21 17:55:50 +08:00
parent 78aaca142b
commit 129037c757
8 changed files with 176 additions and 92 deletions

View File

@ -51,4 +51,20 @@ export function getSameSymbol(params) {
params
})
}
// 导出交易对
export function exportSymbols(params) {
return request({
url: '/api/v1/line-symbol/export',
method: 'get',
responseType: 'blob',
params
})
}
export function symbolAll(params) {
return request({
url: '/api/v1/line-symbol/all',
method: 'get',
params
})
}