From c2a1a725ad13212723e0fddd078616d0af67d5c7 Mon Sep 17 00:00:00 2001
From: lxf <1371462558@qq.com>
Date: Sun, 06 Jul 2025 14:26:14 +0800
Subject: [PATCH] 开空开多容易混乱问题
---
src/components/constract/PerpetualContract/createOrder.vue | 22 ++++++++++++----------
1 files changed, 12 insertions(+), 10 deletions(-)
diff --git a/src/components/constract/PerpetualContract/createOrder.vue b/src/components/constract/PerpetualContract/createOrder.vue
index 9126f05..ec2172d 100644
--- a/src/components/constract/PerpetualContract/createOrder.vue
+++ b/src/components/constract/PerpetualContract/createOrder.vue
@@ -319,16 +319,18 @@
},
// 获取合约金额
getContractAmount: function () {
+ console.log("获取合约金额", this.initOpen.amount, this.inputAmount);
const amount = this.inputAmount;
let data = "0.00";
- if (amount != undefined && this.lever_rate != undefined) {
- if (this.lever_rate?.length > 0) {
- data = amount * this.initOpen.amount;
- } else if (this.lever_rate.length == 0) {
- data = this.sessionObj?.amount * amount * 1;
- }
- }
- return bigDecimal.round(data, 2);
+ // if (amount != undefined && this.lever_rate != undefined) {
+ // if (this.lever_rate?.length > 0) {
+ data = amount * this.initOpen.amount;
+ // }
+ // else if (this.lever_rate.length == 0) {
+ // data = this.sessionObj?.amount * amount * 1;
+ // }
+ // }
+ return data;
},
// 获取保证金,开仓才需要
getMargin: function () {
@@ -528,10 +530,10 @@
}
if (this.isActive === 0) {
// 开仓弹窗 不弹出直接确认
- this.$refs.openDialog.handleSubmit();
+ this.$refs.openDialog.handleSubmit(type);
} else {
// 平仓弹窗
- this.$refs.closeDialog.handleSubmit();
+ this.$refs.closeDialog.handleSubmit(type);
}
}
},
--
Gitblit v1.9.3