|
|
@@ -149,7 +149,7 @@
|
|
|
|
|
|
<div class="menu-content-r">
|
|
|
<div class="menu-content-rb pf400 fs14">
|
|
|
- <div class="menu-content-rb1 fs14 fc333333" @click="showInfo = true">
|
|
|
+ <div class="menu-content-rb1 fs14 fc333333" @click="showInfo1=true">
|
|
|
<img src="@/assets/icon/bitcoin/quancang.svg" alt="">
|
|
|
<span>{{ selectedLabel1 }}</span>
|
|
|
</div>
|
|
|
@@ -183,7 +183,7 @@
|
|
|
<img src="@/assets/icon/bitcoin/quancang.svg" alt="">
|
|
|
<span>隐含波动率</span>
|
|
|
</div>
|
|
|
- <div @click="showModal1 = true" style="font-size: 12px; margin-right: 12px;">
|
|
|
+ <div style="font-size: 12px; margin-right: 12px;">
|
|
|
53.6%
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -283,9 +283,9 @@
|
|
|
teleport="body"
|
|
|
></OrderTimeSheet>
|
|
|
|
|
|
- <MarginInfoSheet
|
|
|
+ <impliedVolatility
|
|
|
v-model:visible="showInfo"
|
|
|
- ></MarginInfoSheet>
|
|
|
+ ></impliedVolatility>
|
|
|
|
|
|
<FundingOptions
|
|
|
v-model:visible="showModal1"
|
|
|
@@ -305,6 +305,9 @@
|
|
|
<CommonFunctionsPopup
|
|
|
v-model:visible="showFunctions"
|
|
|
></CommonFunctionsPopup>
|
|
|
+ <MarginInfoSheet
|
|
|
+ v-model:visible="showInfo1"
|
|
|
+ ></MarginInfoSheet>
|
|
|
<div style="margin-bottom: 80px">
|
|
|
</div>
|
|
|
</div>
|
|
|
@@ -332,12 +335,15 @@ const ChooseThisDepth = defineAsyncComponent(() => import('@/views/bitcoin/compo
|
|
|
const LeveragePopup = defineAsyncComponent(() => import('@/views/bitcoin/components/LeveragePopup.vue'));
|
|
|
const OrderConfirmPopup = defineAsyncComponent(() => import('@/views/bitcoin/components/OrderConfirmPopup.vue'));
|
|
|
const OrderTimeSheet = defineAsyncComponent(() => import('@/views/bitcoin/components/OrderTimeSheet.vue'));
|
|
|
-const MarginInfoSheet = defineAsyncComponent(() => import('@/views/bitcoin/lever/components/impliedVolatility.vue'));
|
|
|
+const impliedVolatility = defineAsyncComponent(() => import('@/views/bitcoin/lever/components/impliedVolatility.vue'));
|
|
|
const FundingOptions = defineAsyncComponent(() => import('@/views/bitcoin/components/FundingOptions.vue'));
|
|
|
const OrderType = defineAsyncComponent(() => import('@/views/bitcoin/components/OrderType.vue'));
|
|
|
const LimitOrderModal = defineAsyncComponent(() => import('@/views/bitcoin/components/LimitOrderModal.vue'));
|
|
|
// 假设您的组件在 @/components/CommonFunctionsPopup.vue (请根据实际路径修改)
|
|
|
const CommonFunctionsPopup = defineAsyncComponent(() => import('@/views/bitcoin/CommonFunctionsPopup/CommonFunctionsPopup.vue'));
|
|
|
+//全仓逐仓说明
|
|
|
+const MarginInfoSheet = defineAsyncComponent(() => import('@/views/bitcoin/components/MarginInfoSheet.vue'));
|
|
|
+
|
|
|
|
|
|
// 控制弹窗显示的变量
|
|
|
const showFunctions = ref(false);
|
|
|
@@ -378,8 +384,9 @@ const handleConfirm1 = (item) => {
|
|
|
selectedLabel1.value = item.label.slice(0, 2);
|
|
|
selectedUnit1.value = item.unit;
|
|
|
};
|
|
|
-
|
|
|
/* 全仓逐仓说明 */
|
|
|
+const showInfo1 = ref(false);
|
|
|
+//隐含波动率
|
|
|
const showInfo = ref(false);
|
|
|
|
|
|
/* GTC 弹框 */
|