From a64ed9ed23afe37e99233835d71b2a6e68644ffc Mon Sep 17 00:00:00 2001 From: liaoxinyu Date: Wed, 24 Dec 2025 15:49:31 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=90=88=E7=BA=A6=E6=95=B0?= =?UTF-8?q?=E9=87=8F=E6=9C=89=E5=B0=8F=E6=95=B0=E7=82=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/contract/exchange-store.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/contract/exchange-store.vue b/src/views/contract/exchange-store.vue index 0304152..5edb42c 100644 --- a/src/views/contract/exchange-store.vue +++ b/src/views/contract/exchange-store.vue @@ -514,7 +514,7 @@ export default { // console.info(this.margin) if (!this.form.lever_rate || !this.marginBuy) return 0; let p=this.marginBuy*this.form.lever_rate; - + p = p.toFixed(0) this.buyform.amount=p; return p }, @@ -523,7 +523,7 @@ export default { // console.info(this.margin) if (!this.form.lever_rate || !this.marginSell) return 0; let p=this.marginSell*this.form.lever_rate; - + p = p.toFixed(0) this.sellform.amount=p; return p }