|
|
@@ -3,8 +3,8 @@
|
|
|
<div class="topTableHeight">
|
|
|
<a-table
|
|
|
:columns="columns"
|
|
|
- class="srcollYTable secondTabTable"
|
|
|
- :scroll="{ x: '100%', y: 'calc(100vh - 405px)' }"
|
|
|
+ :class="['srcollYTable', isBottom ? 'secondTabTable' : 'secondTabTableNoBottom']"
|
|
|
+ :scroll="{ x: '100%', y: isBottom ? 'calc(100vh- 405px)' : 'calc(100vh - 166px)' }"
|
|
|
:pagination="false"
|
|
|
:loading="loading"
|
|
|
:expandedRowKeys="expandedRowKeys"
|
|
|
@@ -78,6 +78,8 @@ import { handleTableEventAndData } from '@/common/setup/table/compose';
|
|
|
import { TableParam } from '@/common/setup/table/interface';
|
|
|
import { BtnListType } from '@/common/components/btnList/interface';
|
|
|
import { QueryQuoteDayRsp } from '@/services/go/quote/interface';
|
|
|
+import { getShowBottomValue } from '@/common/config/constrolBottom';
|
|
|
+
|
|
|
export default defineComponent({
|
|
|
name: EnumRouterName.spot_trade_order_transaction_basis_difference,
|
|
|
components: {
|
|
|
@@ -87,6 +89,7 @@ export default defineComponent({
|
|
|
Detail: defineAsyncComponent(() => import('../components/detail/index.vue')),
|
|
|
},
|
|
|
setup() {
|
|
|
+ const isBottom = getShowBottomValue();
|
|
|
const param: TableParam = {
|
|
|
columnsList,
|
|
|
queryFn: () => {},
|
|
|
@@ -102,6 +105,7 @@ export default defineComponent({
|
|
|
handleSubcriteOnDemandQuote<QueryDeliveryRelationRsp>(deliverGoods);
|
|
|
|
|
|
return {
|
|
|
+ isBottom,
|
|
|
...handleTableEventAndData<QueryQuoteDayRsp>(param),
|
|
|
deliverGoods,
|
|
|
btnList,
|