Pārlūkot izejas kodu

Merge branch 'master' of http://47.101.159.18:3000/Muchinfo/MTP2.0_WEB

huangbin 4 gadi atpakaļ
vecāks
revīzija
63ff7c98d5

+ 74 - 0
src/assets/styles/mixin.less

@@ -3500,4 +3500,78 @@ input:-internal-autofill-selected {
         height: calc(100% - 70px);
         overflow: auto;
     }
+}
+
+// 挂牌求购  摘牌弹窗  部分样式
+.inputIconBox {
+    position: relative;
+    float: left;
+    width: 425px;
+    .ant-form-item-children {
+        width: 350px;
+        display: block;
+        .anticon {
+            width: 15px;
+            height: 32px;
+            line-height: 37px;
+            font-size: 15px;
+            color: @m-blue15;
+            cursor: pointer;
+        }
+        .anticon-minus {
+            position: absolute;
+            top: 0px;
+            left: 9px;
+            z-index: 1;
+        }
+        .anticon-plus {
+            position: absolute;
+            top: 0px;
+            right: 98px;
+            z-index: 1;
+        }
+        .anticon-calendar {
+            font-size: 20px;
+            position: absolute;
+            top: 5px;
+            right: 13px;
+            color: @m-blue15;
+        }
+        .commonInput {
+            input {
+                text-align: center;
+                color: @m-yellow6;
+            }
+        }
+        .ant-checkbox-wrapper {
+            margin-left: 10px;
+            color: @m-white14;
+            font-size: 14px;
+            .position(absolute, 0, auto, auto, 260px);
+            white-space: nowrap;
+            line-height: 32px;
+            height: 30px;
+        }
+        .svg-icon {
+            position: absolute;
+            top: 6px;
+            right: 98px;
+            color: @m-blue15 !important;
+            font-size: 20px;
+        }
+    }
+    .input-enumdicname {
+        right: 125px;
+    }
+}
+.clickBox {
+    display: inline-block;
+    width: 260px;
+    text-indent: 8px;
+    border-radius: 4px;
+    line-height: 30px;
+    color: @m-grey66;
+    border: 1px solid var(--m-grey14);
+    cursor: pointer;
+    background: var(--m-grey21);
 }

+ 4 - 3
src/views/information/account_info/compoments/add-child-futures/index.vue

@@ -70,8 +70,9 @@
             </a-select>
           </a-form-item>
         </a-col>
-        <a-col :span="12"
-               v-if="!isPingAnOem()">
+        <!-- <a-col :span="12"
+               v-if="!isPingAnOem()"> -->
+        <a-col :span="12">
           <a-form-item label="指定交易用户"
                        name="traderUserId">
             <a-select class="inlineFormSelect"
@@ -85,7 +86,7 @@
               </a-select-option>
             </a-select>
             <a-button @click="addTrader"
-                      class="operBtn">新增</a-button>
+                      class="operBtn" v-if="!isPingAnOem()">新增</a-button>
           </a-form-item>
         </a-col>
       </a-row>

+ 151 - 143
src/views/market/spot_trade/warehouse_pre_sale/warehouse_pre_sale_blocs/components/delisting/index.vue

@@ -1,151 +1,159 @@
 <template>
-  <!--仓单贸易 贸易圈挂牌 摘牌-->
-  <Drawer :title="isBargin() ? '议价摘牌' : '摘牌'"
-          :placement="'right'"
-          :visible="visible"
-          @cancel="cancel"
-          class="top">
-    <div class="post_buying">
-      <a-form class="inlineForm dialogForm"
-              ref="formRef"
-              :model="formState"
-              :rules="rules">
-        <div class="formBar">
-          <a-row :gutter="24">
-            <a-col :span="24">
-              <a-form-item label="交易账户"
-                           name="accountid">
-                <a-select class="inlineFormSelect"
-                          style="width: 260px"
-                          v-model:value="formState.accountid"
-                          placeholder="请选择">
-                  <a-select-option v-for="item in accountList"
-                                   :value="item.accountid"
-                                   :key="item.accountid">{{item.accountid}}</a-select-option>
-                </a-select>
-              </a-form-item>
-            </a-col>
-          </a-row>
-          <a-row :gutter="24">
-            <a-col :span="24">
-              <a-form-item label="挂牌方">
-                <span class="white ml8">{{selectedRow.username}}</span>
-              </a-form-item>
-            </a-col>
-            <a-col :span="24">
-              <a-form-item label="挂牌数量">
-                <span class="white ml8">{{selectedRow.orderqty}}{{selectedRow.enumdicname}}</span>
-              </a-form-item>
-            </a-col>
-          </a-row>
-          <a-col :span="24"
-                 v-if="isBargin()">
-            <a-form-item label="摘牌价格"
-                         name="price">
-              <a-input-number class="commonInput"
-                              style="width: 260px"
-                              :min="0"
-                              v-model:value="formState.price" />
-            </a-form-item>
-          </a-col>
-          <a-col :span="24"
-                 v-else>
-            <a-form-item label="摘牌价格">
-              <span class="white ml8">{{selectedRow.fixedprice}}</span>
-            </a-form-item>
-          </a-col>
-          <a-col :span="24"
-                 v-if="!isBuy()">
-            <a-form-item label="现货仓单"
-                         name="LadingBillId">
-              <a-select class="inlineFormSelect"
-                        style="width: 260px"
-                        v-model:value="formState.LadingBillId"
-                        placeholder="请选择">
-                <a-select-option v-for="item in wrHoldList"
-                                 :value="item.id"
-                                 :key="item.id">{{item.name}}</a-select-option>
-              </a-select>
-            </a-form-item>
-          </a-col>
-
-          <a-row :gutter="24"
-                 v-if="isCanpart()">
-            <a-col :span="24">
-              <a-form-item label="摘牌数量"
-                           class="relative"
-                           name="num">
-                <a-input-number class="dialogInput yellowInput"
+    <!--仓单贸易 贸易圈挂牌 摘牌-->
+    <Drawer
+        :title="isBargin() ? '议价摘牌' : '摘牌'"
+        :placement="'right'"
+        :visible="visible"
+        @cancel="cancel"
+        class="top"
+    >
+        <div class="post_buying">
+            <a-form class="inlineForm dialogForm" ref="formRef" :model="formState" :rules="rules">
+                <div class="formBar">
+                    <a-row :gutter="24">
+                        <a-col :span="24">
+                            <a-form-item label="交易账户" name="accountid">
+                                <a-select
+                                    class="inlineFormSelect"
+                                    style="width: 260px"
+                                    v-model:value="formState.accountid"
+                                    placeholder="请选择"
+                                >
+                                    <a-select-option
+                                        v-for="item in accountList"
+                                        :value="item.accountid"
+                                        :key="item.accountid"
+                                    >{{item.accountid}}</a-select-option>
+                                </a-select>
+                            </a-form-item>
+                        </a-col>
+                    </a-row>
+                    <a-row :gutter="24">
+                        <a-col :span="24">
+                            <a-form-item label="挂牌方">
+                                <span class="white ml8">{{selectedRow.username}}</span>
+                            </a-form-item>
+                        </a-col>
+                        <a-col :span="24">
+                            <a-form-item label="挂牌数量">
+                                <span
+                                    class="white ml8"
+                                >{{selectedRow.orderqty}}{{selectedRow.enumdicname}}</span>
+                            </a-form-item>
+                        </a-col>
+                    </a-row>
+                    <a-col :span="24" v-if="isBargin()">
+                        <a-form-item label="摘牌价格" name="price" class="inputIconBox">
+                            <a-input-number
+                                class="commonInput"
                                 style="width: 260px"
                                 :min="0"
-                                :max="getMaxNum()"
-                                v-model:value="formState.num" />
-                <span class="input-enumdicname-absolute">{{selectedRow.enumdicname}}</span>
-                <div class="labelTip">({{selectedRow.minivalue}}{{selectedRow.enumdicname}}起)</div>
-              </a-form-item>
-            </a-col>
-          </a-row>
-          <a-row :gutter="24"
-                 v-if="isCanpart()">
-            <a-col :span="24"
-                   class="mt-20">
-              <a-form-item>
-                <a-slider ::min="0"
-                          v-model:value="formState.num"
-                          :max="selectedRow.orderqty"
-                          class="formSlider"
-                          style="width: 260px" />
-                <div class="unit">
-                  <span>0</span>
-                  <span>{{getMaxNum()}}{{selectedRow.enumdicname}}</span>
+                                v-model:value="formState.price"
+                            />
+                            <MinusOutlined />
+                            <PlusOutlined />
+                        </a-form-item>
+                    </a-col>
+                    <a-col :span="24" v-else>
+                        <a-form-item label="摘牌价格">
+                            <span class="white ml8">{{selectedRow.fixedprice}}</span>
+                        </a-form-item>
+                    </a-col>
+                    <a-col :span="24" v-if="!isBuy()">
+                        <a-form-item label="现货仓单" name="LadingBillId">
+                            <a-select
+                                class="inlineFormSelect"
+                                style="width: 260px"
+                                v-model:value="formState.LadingBillId"
+                                placeholder="请选择"
+                            >
+                                <a-select-option
+                                    v-for="item in wrHoldList"
+                                    :value="item.id"
+                                    :key="item.id"
+                                >{{item.name}}</a-select-option>
+                            </a-select>
+                        </a-form-item>
+                    </a-col>
+
+                    <a-row :gutter="24" v-if="isCanpart()">
+                        <a-col :span="24">
+                            <a-form-item label="摘牌数量" class="relative" name="num">
+                                <a-input-number
+                                    class="dialogInput yellowInput"
+                                    style="width: 260px"
+                                    :min="0"
+                                    :max="getMaxNum()"
+                                    v-model:value="formState.num"
+                                />
+                                <span class="input-enumdicname-absolute">{{selectedRow.enumdicname}}</span>
+                                <div
+                                    class="labelTip"
+                                >({{selectedRow.minivalue}}{{selectedRow.enumdicname}}起)</div>
+                            </a-form-item>
+                        </a-col>
+                    </a-row>
+                    <a-row :gutter="24" v-if="isCanpart()">
+                        <a-col :span="24" class="mt-20">
+                            <a-form-item>
+                                <a-slider
+                                    ::min="0"
+                                    v-model:value="formState.num"
+                                    :max="selectedRow.orderqty"
+                                    class="formSlider"
+                                    style="width: 260px"
+                                />
+                                <div class="unit">
+                                    <span>0</span>
+                                    <span>{{getMaxNum()}}{{selectedRow.enumdicname}}</span>
+                                </div>
+                            </a-form-item>
+                        </a-col>
+                        <a-col :span="12">&nbsp;</a-col>
+                    </a-row>
+                    <a-col :span="24" v-if="!isCanpart()">
+                        <a-form-item label="摘牌数量">
+                            <span
+                                class="white ml8"
+                            >{{selectedRow.orderqty}}{{selectedRow.enumdicname}}</span>
+                        </a-form-item>
+                    </a-col>
+                    <a-row :gutter="24">
+                        <a-col :span="24" class="mt-20">
+                            <a-form-item label="摘牌金额">
+                                <span class="white ml8">{{getMoney()}}</span>
+                            </a-form-item>
+                        </a-col>
+                    </a-row>
+                    <a-row :gutter="24">
+                        <a-col :span="12">
+                            <a-form-item label="履约保证金">
+                                <span class="white ml8">{{getCanUseMoney(getSelectedAccount())}}</span>
+                            </a-form-item>
+                        </a-col>
+                        <a-col :span="12">
+                            <a-form-item label="可用资金">
+                                <span class="white ml8">{{getCanUseMoney(getSelectedAccount())}}</span>
+                            </a-form-item>
+                        </a-col>
+                    </a-row>
                 </div>
-              </a-form-item>
-            </a-col>
-            <a-col :span="12">&nbsp;</a-col>
-          </a-row>
-          <a-col :span="24"
-                 v-if="!isCanpart()">
-            <a-form-item label="摘牌数量">
-              <span class="white ml8">{{selectedRow.orderqty}}{{selectedRow.enumdicname}}</span>
-            </a-form-item>
-          </a-col>
-          <a-row :gutter="24">
-            <a-col :span="24"
-                   class="mt-20">
-              <a-form-item label="摘牌金额">
-                <span class="white ml8">{{getMoney()}}</span>
-              </a-form-item>
-            </a-col>
-          </a-row>
-          <a-row :gutter="24">
-            <a-col :span="12">
-              <a-form-item label="履约保证金">
-                <span class="white ml8">{{getCanUseMoney(getSelectedAccount())}}</span>
-              </a-form-item>
-            </a-col>
-            <a-col :span="12">
-              <a-form-item label="可用资金">
-                <span class="white ml8">{{getCanUseMoney(getSelectedAccount())}}</span>
-              </a-form-item>
-            </a-col>
-          </a-row>
+                <a-row :gutter="24">
+                    <a-col :span="24" class="fixedBtns">
+                        <a-form-item class="btnCenter">
+                            <a-button
+                                class="listedBtn"
+                                :loading="loading"
+                                :disabled="loading"
+                                @click="submit"
+                            >{{isBuy() ? '卖出' : '买入'}}</a-button>
+                            <a-button class="ml10 cancelBtn" @click="cancel">取消</a-button>
+                        </a-form-item>
+                    </a-col>
+                </a-row>
+            </a-form>
         </div>
-        <a-row :gutter="24">
-          <a-col :span="24"
-                 class="fixedBtns">
-            <a-form-item class="btnCenter">
-              <a-button class="listedBtn"
-                        :loading="loading"
-                        :disabled="loading"
-                        @click="submit">{{isBuy() ? '卖出' : '买入'}}</a-button>
-              <a-button class="ml10 cancelBtn"
-                        @click="cancel">取消</a-button>
-            </a-form-item>
-          </a-col>
-        </a-row>
-      </a-form>
-    </div>
-  </Drawer>
+    </Drawer>
 </template>
 
 <script lang="ts">

+ 0 - 72
src/views/market/spot_trade/warehouse_pre_sale/warehouse_pre_sale_blocs/components/post-buying/index.vue

@@ -362,76 +362,4 @@ export default defineComponent({
         }
     }
 }
-.inputIconBox {
-    position: relative;
-    float: left;
-    width: 425px;
-    .ant-form-item-children {
-        width: 350px;
-        display: block;
-        .anticon {
-            width: 15px;
-            height: 32px;
-            line-height: 37px;
-            font-size: 15px;
-            color: @m-blue15;
-            cursor: pointer;
-        }
-        .anticon-minus {
-            position: absolute;
-            top: 0px;
-            left: 9px;
-            z-index: 1;
-        }
-        .anticon-plus {
-            position: absolute;
-            top: 0px;
-            right: 98px;
-            z-index: 1;
-        }
-        .anticon-calendar {
-            font-size: 20px;
-            position: absolute;
-            top: 5px;
-            right: 13px;
-            color: @m-blue15;
-        }
-        .commonInput {
-            input {
-                text-align: center;
-                color: @m-yellow6;
-            }
-        }
-        .ant-checkbox-wrapper {
-            margin-left: 10px;
-            color: @m-white14;
-            font-size: 14px;
-            .position(absolute, 0, auto, auto, 260px);
-            white-space: nowrap;
-            line-height: 32px;
-            height: 30px;
-        }
-        .svg-icon {
-            position: absolute;
-            top: 6px;
-            right: 98px;
-            color: @m-blue15 !important;
-            font-size: 20px;
-        }
-    }
-    .input-enumdicname {
-        right: 125px;
-    }
-}
-.clickBox {
-    display: inline-block;
-    width: 260px;
-    text-indent: 8px;
-    border-radius: 4px;
-    line-height: 30px;
-    color: @m-grey66;
-    border: 1px solid var(--m-grey14);
-    cursor: pointer;
-    background: var(--m-grey21);
-}
 </style>

+ 149 - 143
src/views/market/spot_trade/warehouse_receipt_trade/warehouse_receipt_trade_blocs/components/delisting/index.vue

@@ -1,151 +1,157 @@
 <template>
-  <!--仓单贸易 贸易圈挂牌 摘牌-->
-  <Drawer :title="isBargin() ? '议价摘牌' : '摘牌'"
-          :placement="'right'"
-          :visible="visible"
-          @cancel="cancel"
-          class="top">
-    <div class="post_buying">
-      <a-form class="inlineForm dialogForm"
-              ref="formRef"
-              :model="formState"
-              :rules="rules">
-        <div class="formBar">
-          <a-row :gutter="24">
-            <a-col :span="24">
-              <a-form-item label="交易账户"
-                           name="accountid">
-                <a-select class="inlineFormSelect"
-                          style="width: 260px"
-                          v-model:value="formState.accountid"
-                          placeholder="请选择">
-                  <a-select-option v-for="item in accountList"
-                                   :value="item.accountid"
-                                   :key="item.accountid">{{item.accountid}}</a-select-option>
-                </a-select>
-              </a-form-item>
-            </a-col>
-          </a-row>
-          <a-row :gutter="24">
-            <a-col :span="24">
-              <a-form-item label="挂牌方">
-                <span class="white ml8">{{selectedRow.username}}</span>
-              </a-form-item>
-            </a-col>
-            <a-col :span="24">
-              <a-form-item label="挂牌数量">
-                <span class="white ml8">{{selectedRow.orderqty}}{{selectedRow.enumdicname}}</span>
-              </a-form-item>
-            </a-col>
-          </a-row>
-          <a-col :span="24"
-                 v-if="isBargin()">
-            <a-form-item label="摘牌价格"
-                         name="price">
-              <a-input-number class="commonInput"
-                              style="width: 260px"
-                              :min="0"
-                              v-model:value="formState.price" />
-            </a-form-item>
-          </a-col>
-          <a-col :span="24"
-                 v-else>
-            <a-form-item label="摘牌价格">
-              <span class="white ml8">{{selectedRow.fixedprice}}</span>
-            </a-form-item>
-          </a-col>
-          <a-col :span="24"
-                 v-if="!isBuy()">
-            <a-form-item label="现货仓单"
-                         name="LadingBillId">
-              <a-select class="inlineFormSelect"
-                        style="width: 260px"
-                        v-model:value="formState.LadingBillId"
-                        placeholder="请选择">
-                <a-select-option v-for="item in wrHoldList"
-                                 :value="item.id"
-                                 :key="item.id">{{item.name}}</a-select-option>
-              </a-select>
-            </a-form-item>
-          </a-col>
-
-          <a-row :gutter="24"
-                 v-if="isCanpart()">
-            <a-col :span="24">
-              <a-form-item label="摘牌数量"
-                           class="relative"
-                           name="num">
-                <a-input-number class="dialogInput yellowInput"
+    <!--仓单贸易 贸易圈挂牌 摘牌-->
+    <Drawer
+        :title="isBargin() ? '议价摘牌' : '摘牌'"
+        :placement="'right'"
+        :visible="visible"
+        @cancel="cancel"
+        class="top"
+    >
+        <div class="post_buying">
+            <a-form class="inlineForm dialogForm" ref="formRef" :model="formState" :rules="rules">
+                <div class="formBar">
+                    <a-row :gutter="24">
+                        <a-col :span="24">
+                            <a-form-item label="交易账户" name="accountid">
+                                <a-select
+                                    class="inlineFormSelect"
+                                    style="width: 260px"
+                                    v-model:value="formState.accountid"
+                                    placeholder="请选择"
+                                >
+                                    <a-select-option
+                                        v-for="item in accountList"
+                                        :value="item.accountid"
+                                        :key="item.accountid"
+                                    >{{item.accountid}}</a-select-option>
+                                </a-select>
+                            </a-form-item>
+                        </a-col>
+                    </a-row>
+                    <a-row :gutter="24">
+                        <a-col :span="24">
+                            <a-form-item label="挂牌方">
+                                <span class="white ml8">{{selectedRow.username}}</span>
+                            </a-form-item>
+                        </a-col>
+                        <a-col :span="24">
+                            <a-form-item label="挂牌数量">
+                                <span
+                                    class="white ml8"
+                                >{{selectedRow.orderqty}}{{selectedRow.enumdicname}}</span>
+                            </a-form-item>
+                        </a-col>
+                    </a-row>
+                    <a-col :span="24" v-if="isBargin()">
+                        <a-form-item label="摘牌价格" name="price" class="inputIconBox">
+                            <a-input-number
+                                class="commonInput"
                                 style="width: 260px"
                                 :min="0"
-                                :max="getMaxNum()"
-                                v-model:value="formState.num" />
-                <span class="input-enumdicname-absolute">{{selectedRow.enumdicname}}</span>
-                <div class="labelTip">({{selectedRow.minivalue}}{{selectedRow.enumdicname}}起)</div>
-              </a-form-item>
-            </a-col>
-          </a-row>
-          <a-row :gutter="24"
-                 v-if="isCanpart()">
-            <a-col :span="24"
-                   class="mt-20">
-              <a-form-item>
-                <a-slider ::min="0"
-                          v-model:value="formState.num"
-                          :max="selectedRow.orderqty"
-                          class="formSlider"
-                          style="width: 260px" />
-                <div class="unit">
-                  <span>0</span>
-                  <span>{{getMaxNum()}}{{selectedRow.enumdicname}}</span>
+                                v-model:value="formState.price"
+                            />
+                        </a-form-item>
+                    </a-col>
+                    <a-col :span="24" v-else>
+                        <a-form-item label="摘牌价格">
+                            <span class="white ml8">{{selectedRow.fixedprice}}</span>
+                        </a-form-item>
+                    </a-col>
+                    <a-col :span="24" v-if="!isBuy()">
+                        <a-form-item label="现货仓单" name="LadingBillId">
+                            <a-select
+                                class="inlineFormSelect"
+                                style="width: 260px"
+                                v-model:value="formState.LadingBillId"
+                                placeholder="请选择"
+                            >
+                                <a-select-option
+                                    v-for="item in wrHoldList"
+                                    :value="item.id"
+                                    :key="item.id"
+                                >{{item.name}}</a-select-option>
+                            </a-select>
+                        </a-form-item>
+                    </a-col>
+
+                    <a-row :gutter="24" v-if="isCanpart()">
+                        <a-col :span="24">
+                            <a-form-item label="摘牌数量" class="relative" name="num">
+                                <a-input-number
+                                    class="dialogInput yellowInput"
+                                    style="width: 260px"
+                                    :min="0"
+                                    :max="getMaxNum()"
+                                    v-model:value="formState.num"
+                                />
+                                <span class="input-enumdicname-absolute">{{selectedRow.enumdicname}}</span>
+                                <div
+                                    class="labelTip"
+                                >({{selectedRow.minivalue}}{{selectedRow.enumdicname}}起)</div>
+                            </a-form-item>
+                        </a-col>
+                    </a-row>
+                    <a-row :gutter="24" v-if="isCanpart()">
+                        <a-col :span="24" class="mt-20">
+                            <a-form-item>
+                                <a-slider
+                                    ::min="0"
+                                    v-model:value="formState.num"
+                                    :max="selectedRow.orderqty"
+                                    class="formSlider"
+                                    style="width: 260px"
+                                />
+                                <div class="unit">
+                                    <span>0</span>
+                                    <span>{{getMaxNum()}}{{selectedRow.enumdicname}}</span>
+                                </div>
+                            </a-form-item>
+                        </a-col>
+                        <a-col :span="12">&nbsp;</a-col>
+                    </a-row>
+                    <a-col :span="24" v-if="!isCanpart()">
+                        <a-form-item label="摘牌数量">
+                            <span
+                                class="white ml8"
+                            >{{selectedRow.orderqty}}{{selectedRow.enumdicname}}</span>
+                        </a-form-item>
+                    </a-col>
+                    <a-row :gutter="24">
+                        <a-col :span="24" class="mt-20">
+                            <a-form-item label="摘牌金额">
+                                <span class="white ml8">{{getMoney()}}</span>
+                            </a-form-item>
+                        </a-col>
+                    </a-row>
+                    <a-row :gutter="24">
+                        <a-col :span="12">
+                            <a-form-item label="履约保证金">
+                                <span class="white ml8">{{getCanUseMoney(getSelectedAccount())}}</span>
+                            </a-form-item>
+                        </a-col>
+                        <a-col :span="12">
+                            <a-form-item label="可用资金">
+                                <span class="white ml8">{{getCanUseMoney(getSelectedAccount())}}</span>
+                            </a-form-item>
+                        </a-col>
+                    </a-row>
                 </div>
-              </a-form-item>
-            </a-col>
-            <a-col :span="12">&nbsp;</a-col>
-          </a-row>
-          <a-col :span="24"
-                 v-if="!isCanpart()">
-            <a-form-item label="摘牌数量">
-              <span class="white ml8">{{selectedRow.orderqty}}{{selectedRow.enumdicname}}</span>
-            </a-form-item>
-          </a-col>
-          <a-row :gutter="24">
-            <a-col :span="24"
-                   class="mt-20">
-              <a-form-item label="摘牌金额">
-                <span class="white ml8">{{getMoney()}}</span>
-              </a-form-item>
-            </a-col>
-          </a-row>
-          <a-row :gutter="24">
-            <a-col :span="12">
-              <a-form-item label="履约保证金">
-                <span class="white ml8">{{getCanUseMoney(getSelectedAccount())}}</span>
-              </a-form-item>
-            </a-col>
-            <a-col :span="12">
-              <a-form-item label="可用资金">
-                <span class="white ml8">{{getCanUseMoney(getSelectedAccount())}}</span>
-              </a-form-item>
-            </a-col>
-          </a-row>
+                <a-row :gutter="24">
+                    <a-col :span="24" class="fixedBtns">
+                        <a-form-item class="btnCenter">
+                            <a-button
+                                class="listedBtn"
+                                :loading="loading"
+                                :disabled="loading"
+                                @click="submit"
+                            >{{isBuy() ? '卖出' : '买入'}}</a-button>
+                            <a-button class="ml10 cancelBtn" @click="cancel">取消</a-button>
+                        </a-form-item>
+                    </a-col>
+                </a-row>
+            </a-form>
         </div>
-        <a-row :gutter="24">
-          <a-col :span="24"
-                 class="fixedBtns">
-            <a-form-item class="btnCenter">
-              <a-button class="listedBtn"
-                        :loading="loading"
-                        :disabled="loading"
-                        @click="submit">{{isBuy() ? '卖出' : '买入'}}</a-button>
-              <a-button class="ml10 cancelBtn"
-                        @click="cancel">取消</a-button>
-            </a-form-item>
-          </a-col>
-        </a-row>
-      </a-form>
-    </div>
-  </Drawer>
+    </Drawer>
 </template>
 
 <script lang="ts">

+ 0 - 72
src/views/market/spot_trade/warehouse_receipt_trade/warehouse_receipt_trade_blocs/components/post-buying/index.vue

@@ -424,76 +424,4 @@ export default defineComponent({
         }
     }
 }
-.inputIconBox {
-    position: relative;
-    float: left;
-    width: 425px;
-    .ant-form-item-children {
-        width: 350px;
-        display: block;
-        .anticon {
-            width: 15px;
-            height: 32px;
-            line-height: 37px;
-            font-size: 15px;
-            color: @m-blue15;
-            cursor: pointer;
-        }
-        .anticon-minus {
-            position: absolute;
-            top: 0px;
-            left: 9px;
-            z-index: 1;
-        }
-        .anticon-plus {
-            position: absolute;
-            top: 0px;
-            right: 98px;
-            z-index: 1;
-        }
-        .anticon-calendar {
-            font-size: 20px;
-            position: absolute;
-            top: 5px;
-            right: 13px;
-            color: @m-blue15;
-        }
-        .commonInput {
-            input {
-                text-align: center;
-                color: @m-yellow6;
-            }
-        }
-        .ant-checkbox-wrapper {
-            margin-left: 10px;
-            color: @m-white14;
-            font-size: 14px;
-            .position(absolute, 0, auto, auto, 260px);
-            white-space: nowrap;
-            line-height: 32px;
-            height: 30px;
-        }
-        .svg-icon {
-            position: absolute;
-            top: 6px;
-            right: 98px;
-            color: @m-blue15 !important;
-            font-size: 20px;
-        }
-    }
-    .input-enumdicname {
-        right: 125px;
-    }
-}
-.clickBox {
-    display: inline-block;
-    width: 260px;
-    text-indent: 8px;
-    border-radius: 4px;
-    line-height: 30px;
-    color: @m-grey66;
-    border: 1px solid var(--m-grey14);
-    cursor: pointer;
-    background: var(--m-grey21);
-}
 </style>