|
@@ -1,4 +1,5 @@
|
|
|
<template>
|
|
<template>
|
|
|
|
|
+<<<<<<< HEAD
|
|
|
<!-- 仓单贸易 浮动价挂牌-->
|
|
<!-- 仓单贸易 浮动价挂牌-->
|
|
|
<div class="warehouse_receipt_trade_floating_price topTableHeight">
|
|
<div class="warehouse_receipt_trade_floating_price topTableHeight">
|
|
|
<a-table
|
|
<a-table
|
|
@@ -15,6 +16,30 @@
|
|
|
<!-- 右键 -->
|
|
<!-- 右键 -->
|
|
|
<contextMenu :contextMenu="contextMenu" @cancel="closeContext" :list="secondBtn"></contextMenu>
|
|
<contextMenu :contextMenu="contextMenu" @cancel="closeContext" :list="secondBtn"></contextMenu>
|
|
|
</div>
|
|
</div>
|
|
|
|
|
+=======
|
|
|
|
|
+ <!-- 仓单贸易 浮动价挂牌-->
|
|
|
|
|
+ <div class="warehouse_receipt_trade_floating_price">
|
|
|
|
|
+ <a-table :columns="columns"
|
|
|
|
|
+ class="srcollYTable"
|
|
|
|
|
+ :scroll="{ x: '100%', y: 'calc(100vh - 163px)' }"
|
|
|
|
|
+ :pagination="false"
|
|
|
|
|
+ :loading="loading"
|
|
|
|
|
+ :expandedRowKeys="expandedRowKeys"
|
|
|
|
|
+ :customRow="Rowclick"
|
|
|
|
|
+ rowKey="key"
|
|
|
|
|
+ :data-source="tableList">
|
|
|
|
|
+ </a-table>
|
|
|
|
|
+ <!-- 右键 -->
|
|
|
|
|
+ <contextMenu :contextMenu="contextMenu"
|
|
|
|
|
+ @cancel="closeContext"
|
|
|
|
|
+ :list="firstBtn">
|
|
|
|
|
+ </contextMenu>
|
|
|
|
|
+ <component :is="componentId"
|
|
|
|
|
+ v-if="componentId"
|
|
|
|
|
+ :selectedRow="selectedRow"
|
|
|
|
|
+ @cancel="closeComponent"></component>
|
|
|
|
|
+ </div>
|
|
|
|
|
+>>>>>>> 1dfb44957fac2bbd7eb2be1010fc4e0db8651b33
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
<script lang="ts">
|
|
@@ -28,6 +53,9 @@ export default defineComponent({
|
|
|
name: EnumRouterName.warehouse_receipt_trade_floating_price,
|
|
name: EnumRouterName.warehouse_receipt_trade_floating_price,
|
|
|
components: {
|
|
components: {
|
|
|
contextMenu,
|
|
contextMenu,
|
|
|
|
|
+ [ModalEnum.warehouse_receipt_trade_floating_price_detail]: defineAsyncComponent(() => import('../../components/detail/index.vue')),
|
|
|
|
|
+ [ModalEnum.warehouse_receipt_trade_floating_price_post_buying]: defineAsyncComponent(() => import('../../components/post_buying/index.vue')),
|
|
|
|
|
+ [ModalEnum.warehouse_receipt_trade_floating_price_delisting]: defineAsyncComponent(() => import('../../components/buy-sell-market/index.vue')),
|
|
|
},
|
|
},
|
|
|
setup() {
|
|
setup() {
|
|
|
// 表格列表数据
|
|
// 表格列表数据
|
|
@@ -47,7 +75,7 @@ export default defineComponent({
|
|
|
menuType: EnumRouterName.warehouse_receipt_trade_floating_price,
|
|
menuType: EnumRouterName.warehouse_receipt_trade_floating_price,
|
|
|
tableName: 'table_pcweb_agreement',
|
|
tableName: 'table_pcweb_agreement',
|
|
|
tableFilterKey: [],
|
|
tableFilterKey: [],
|
|
|
- isDetail: true,
|
|
|
|
|
|
|
+ isDetail: false,
|
|
|
};
|
|
};
|
|
|
return {
|
|
return {
|
|
|
...handleComposeTable<WrOrderQuote>(param),
|
|
...handleComposeTable<WrOrderQuote>(param),
|