|
|
@@ -122,7 +122,7 @@ const deposit = computed(() => {
|
|
|
// 比率:订单金额*配置值
|
|
|
const fee = computed(() => {
|
|
|
const { tradefees = [], agreeunit = 0 } = quote.value ?? {}
|
|
|
- const { FeeAlgorithm = 1, ExchangeValue = 1.0 } = tradefees.find((e) => e.FeeID === 105) ?? {}
|
|
|
+ const { FeeAlgorithm = 1, ExchangeValue = 0.0 } = tradefees.find((e) => e.FeeID === 105) ?? {}
|
|
|
// 比例
|
|
|
if (FeeAlgorithm === 1) {
|
|
|
return enableqty.value * agreeunit * ExchangeValue
|