From 4d9fcbd65c90edae2338ad385e97e56c6cf739f4 Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Tue, 13 Aug 2024 14:13:17 +0800
Subject: [PATCH] 问题处理
---
src/components/perpetual-open/index.vue | 20 +++++++++++++++++---
1 files changed, 17 insertions(+), 3 deletions(-)
diff --git a/src/components/perpetual-open/index.vue b/src/components/perpetual-open/index.vue
index 76e972a..b12dc59 100644
--- a/src/components/perpetual-open/index.vue
+++ b/src/components/perpetual-open/index.vue
@@ -225,12 +225,16 @@
<div style="border: 1px solid #a6a6a6; border-radius: 4px;" class="h-76 lh-76 inputBackground2 mb-30 flex pr-20 justify-center rounded-lg textColor"
v-if="selectIndex == 1">
- <input v-if="type / 1 === 1" :placeholder="$t('价格最优')" class="w-full pl-20 h-76 border-none text-left rounded-lg"
+ <!-- <input v-if="type / 1 === 1" :placeholder="$t('价格最优')" class="w-full pl-20 h-76 border-none text-left rounded-lg"
:disabled="type / 1 === 1" @focus="focus = true" />
<input v-else class="w-full pl-20 h-76 border-none text-left rounded-lg"
- :disabled="type / 1 === 1" @focus="focus = true" v-model="form.price" />
+ :disabled="type / 1 === 1" @focus="focus = true" v-model="form.price" /> -->
+
+ <input class="w-full pl-20 h-76 border-none text-left rounded-lg"
+ :disabled="type / 1 === 1" @focus="focus = true" v-model="form.price" />
<span class="ml-20">USDT</span>
</div>
+
<div v-if="selectIndex == 2" class="w-440 flex items-center inputBackground2 h-76 lh-76 rounded-lg">
<div v-if="selectIndex == 1" class="w-80 flex items-center justify-center" style="height: 100%"
@click="onReduce">
@@ -252,7 +256,7 @@
</div>
</div>
<template v-if="selectIndex == 1">
- <div class="mt-50 w-full flex justify-between items-center">
+ <div class="mb-20 w-full flex justify-between items-center">
<span class="font-22 font-400 newcolor1">{{
$t("可开张数")
}}</span>
@@ -261,6 +265,16 @@
U
</span>
</div>
+ <div style="border: 1px solid #a6a6a6; border-radius: 4px;" class="h-76 lh-76 inputBackground2 mb-30 flex pr-20 justify-center rounded-lg textColor"
+ v-if="selectIndex == 1">
+ <input :placeholder="selectIndex == 1 ? $t('交易数量')
+ : $t('最少') + initFutrue && initFutrue.para
+ ? $t('最小金额') + initFutrue.para[paraIndex].buy_min
+ : ''
+ " class="border-none text-center textColor" style="width: 156px" v-model="form.amount"
+ type="number" @input="onInput" />
+ </div>
+
<!-- <div
class="h-76 lh-76 inputBackground mb-30 flex pr-20 justify-center rounded-lg textColor" style="margin-top:20px"
>
--
Gitblit v1.9.3