This commit is contained in:
shilin
2025-02-18 17:18:31 +08:00
parent f7b5fdefdf
commit 5db097df9a
4 changed files with 62 additions and 25 deletions

View File

@ -151,3 +151,12 @@ export function aicoinSymbol(params) {
})
}
// 获取止盈点
export function calculate(data) {
return request({
url: '/api/v1/line-pre-order/calculate',
method: 'post',
data
})
}