|
|
@@ -3,14 +3,15 @@
|
|
|
<a-drawer :placement="placement"
|
|
|
:closable="false"
|
|
|
:visible="visible"
|
|
|
- class="top"> <!-- 摘牌是top 挂牌是bottom -->
|
|
|
+ class="tradeDialog"> <!-- 摘牌是top 挂牌是bottom 期货交易是tradeDialog -->
|
|
|
<div class="collapse"
|
|
|
@click="cancel"></div>
|
|
|
<div class="collapseCont">
|
|
|
- <div class="title">{{ title }}</div>
|
|
|
- <div class="content">
|
|
|
+ <!-- <div class="title">{{ title }}</div> -->
|
|
|
+ <div class="content highContent">
|
|
|
<!-- <Listed></Listed> -->
|
|
|
- <Delisting></Delisting>
|
|
|
+ <!-- <Delisting></Delisting> -->
|
|
|
+ <Trade></Trade>
|
|
|
</div>
|
|
|
</div>
|
|
|
</a-drawer>
|
|
|
@@ -22,6 +23,7 @@ import { defineComponent, ref, PropType } from 'vue';
|
|
|
import { closeModal, ModalName } from '@/setup/controlModal/index';
|
|
|
import Listed from '@/views/market/warehouseTrade/components/listed/index.vue';
|
|
|
import Delisting from '@/views/market/warehouseTrade/components/delisting/index.vue';
|
|
|
+import Trade from '@/views/market/warehouseTrade/components/trade/index.vue';
|
|
|
|
|
|
interface Key {
|
|
|
[propName: string]: string;
|
|
|
@@ -46,7 +48,8 @@ export default defineComponent({
|
|
|
},
|
|
|
components: {
|
|
|
Listed,
|
|
|
- Delisting
|
|
|
+ Delisting,
|
|
|
+ Trade
|
|
|
},
|
|
|
setup(props, context) {
|
|
|
const { visible, cancel, handleOk } = closeModal(props.modalName);
|
|
|
@@ -64,12 +67,21 @@ export default defineComponent({
|
|
|
width: 586px;
|
|
|
height: 330px;
|
|
|
background: transparent;
|
|
|
+ z-index: 10;
|
|
|
}
|
|
|
.top {
|
|
|
.position(fixed, 116px, 0, auto, auto);
|
|
|
width: 446px;
|
|
|
height: 350px;
|
|
|
background: transparent;
|
|
|
+ z-index: 10;
|
|
|
+}
|
|
|
+.tradeDialog {
|
|
|
+ .position(fixed, 116px, 0, auto, auto);
|
|
|
+ width: 467px;
|
|
|
+ height: 310px;
|
|
|
+ background: transparent;
|
|
|
+ z-index: 10;
|
|
|
}
|
|
|
.ant-drawer.ant-drawer-open {
|
|
|
.ant-drawer-mask {
|
|
|
@@ -118,6 +130,9 @@ export default defineComponent({
|
|
|
overflow-y: auto;
|
|
|
background: @m-grey11;
|
|
|
}
|
|
|
+ .highContent {
|
|
|
+ max-height: 100%;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|