huangbin 4 năm trước cách đây
mục cha
commit
014cb7533b

+ 10 - 1
src/common/components/drawer/index.vue

@@ -4,7 +4,7 @@
             :visible="visible"
             :destroyOnClose="true"
             class="bottomListed"
-            height="405px">
+            :height="height">
     <!-- 摘牌是top  挂牌是bottom 期货交易是tradeDialog -->
     <div class="collapse"
          @click="cancel">
@@ -107,6 +107,10 @@ export default defineComponent({
             default: false,
             type: Boolean,
         },
+        height: {
+            default: '405px',
+            type: String,
+        },
     },
     components: {
         Listed,
@@ -466,4 +470,9 @@ export default defineComponent({
 .ant-form.inlineForm .ant-row.ant-form-item .ant-form-item-label label {
     width: 90px;
 }
+.height486 {
+    .ant-drawer-content-wrapper {
+        height: 486px !important;
+    }
+}
 </style>

+ 2 - 2
src/services/go/ermcp/goodsInfo/index.ts

@@ -116,9 +116,9 @@ export function QueryMiddleGoodsDetail(middlegoodsid?: number): Promise<Ermcp3Mi
 export function GetErmcpGoods(lastUpdateTime?: string): Promise<string> {
     const param = lastUpdateTime ? { lastUpdateTime } : {}
     return commonSearch_go('/Ermcp/GetErmcpGoods', param).then(res => {
-
         if (res.length) {
-            const result = res.reduce((acc: string, obj: Goods) => acc + obj.goodscode + ',', '')
+            // goodscode 必须转换成大写
+            const result = res.reduce((acc: string, obj: Goods) => acc + (obj.goodscode).toLocaleUpperCase() + ',', '')
             // 登录的时候或者刷新的时候,需要获取一次盘面信息
             QueryQuoteDay(result)
         }

+ 1 - 1
src/views/order/funding_information/components/funding_information_funding_summary/components/funding_information_funding_summary_withdraw/index.vue

@@ -2,7 +2,7 @@
   <Drawer :title="'提现'"
           :placement="'right'"
           :visible="visible"
-          class="delistingBottom"
+          class="delistingBottom height486"
           @cancel="cancel">
     <div class="listed">
       <a-form class="inlineForm dialogForm"