From 3252eb2d24b8c2ff7490d842227466bb8b6e0014 Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Mon, 12 Aug 2024 18:36:20 +0800
Subject: [PATCH] 问题处理

---
 src/components/perpetual-open/index.vue |   65 ++++++++++++--------------------
 1 files changed, 24 insertions(+), 41 deletions(-)

diff --git a/src/components/perpetual-open/index.vue b/src/components/perpetual-open/index.vue
index d4a7881..76e972a 100644
--- a/src/components/perpetual-open/index.vue
+++ b/src/components/perpetual-open/index.vue
@@ -64,7 +64,8 @@
             </div>
             <div class="text-right items-end justify-end">
               <div class="">{{ $t("数量") }}</div>
-              <div class="mt-4">({{ symbol | _symbolName() }})</div>
+              <div class="mt-4" v-if="symbol=='love'">(ORBITAL)</div>
+			  <div class="mt-4" v-else>({{ symbol | _symbolName() }})</div>
             </div>
           </div>
           <div
@@ -222,46 +223,28 @@
             @paraId="onParaId"
           />
           
-          <div class="w-440 flex items-center box-show h-76 lh-76 rounded-lg">
-            <div
-              v-if="selectIndex == 1"
-              class="w-80 flex items-center justify-center"
-              style="height: 100%"
-              @click="onReduce"
-            >
-              <img
-                src="../../assets/image/public/reduce.png"
-                alt="add"
-                class="w-30 h-6"
-              />
+          <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"
+			  :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" />
+            <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">
+              <img src="../../assets/image/public/reduce.png" alt="add" class="w-30 h-6" />
             </div>
-
-            <input
-              :placeholder="
-                selectIndex == 1
-                  ? $t('张数')
-                  : $t('最少') + initFutrue && initFutrue.para
-                  ? $t('最小金额') + initFutrue.para[paraIndex].buy_min
-                  : ''
-              "
-              class="border-none text-center "
-              style="width: 156px"
-              v-model="form.amount"
-              type="number"
-              @input="onInput"
-            />
-            <div
-              class="w-80 flex items-center justify-center"
-              style="height: 100%"
-            >
+            <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 class="w-80 flex items-center justify-center" style="height: 100%">
               <template v-if="selectIndex == 1">
-                <div @click="onAdd">
-                  <img
-                    src="../../assets/image/public/add.png"
-                    alt="reduce"
-                    class="w-30 h-30"
-                  />
-                </div>
+                <img @click="onAdd" src="../../assets/image/public/add.png" alt="reduce" class="w-30 h-30" />
               </template>
               <template v-else>
                 <span class="textColor">USDT</span>
@@ -342,7 +325,7 @@
                 {{ (initData.amount * (form.amount / 1)) | nan }} USDT
               </div>
             </div>
-            <div class="flex justify-between mt-30">
+            <!-- <div class="flex justify-between mt-30">
               <div class="newcolor1">{{ $t("建仓手续费") }}</div>
               <div class="textColor">
                 {{
@@ -352,7 +335,7 @@
                 }}
                 USDT
               </div>
-            </div>
+            </div> -->
           </template>
           <div
             class="flex font-24 text-grey justify-between mt-32"

--
Gitblit v1.9.3