|
|
@@ -6,7 +6,8 @@
|
|
|
:inOrOut="'in'">
|
|
|
</Filter>
|
|
|
<a-table :columns="columns"
|
|
|
- class="topTable"
|
|
|
+ class="srcollYTable"
|
|
|
+ :scroll="{ x: '100%', y: 'calc(100vh - 163px)' }"
|
|
|
:pagination="false"
|
|
|
:expandedRowKeys="expandedRowKeys"
|
|
|
:customRow="Rowclick"
|
|
|
@@ -18,26 +19,26 @@
|
|
|
:record="record"
|
|
|
@click="openComponent" />
|
|
|
</template>
|
|
|
- <!-- 状态 -->
|
|
|
- <template #applystatus="{ text }">
|
|
|
- <a>{{ getApplyStatusName(text) }}</a>
|
|
|
- </template>
|
|
|
- <!-- 现货合同类型 -->
|
|
|
- <template #contracttype="{ text }">
|
|
|
- <a>{{ getContractTypeName(text) }}</a>
|
|
|
- </template>
|
|
|
- <!-- 点价类型 -->
|
|
|
- <template #pricetype="{ text }">
|
|
|
- <a>{{ getPriceTypeName(text) }}</a>
|
|
|
- </template>
|
|
|
- <!-- 出入库类型 -->
|
|
|
- <template #inouttype="{ text }">
|
|
|
- <a>{{ InOutTypeName(text) }}</a>
|
|
|
- </template>
|
|
|
- <!-- 对手方 -->
|
|
|
- <template #buynicknameOrsellusername="{ record }">
|
|
|
- <a>{{ handleName(record) }}</a>
|
|
|
- </template>
|
|
|
+ <!-- 状态 -->
|
|
|
+ <template #applystatus="{ text }">
|
|
|
+ <a>{{ getApplyStatusName(text) }}</a>
|
|
|
+ </template>
|
|
|
+ <!-- 现货合同类型 -->
|
|
|
+ <template #contracttype="{ text }">
|
|
|
+ <a>{{ getContractTypeName(text) }}</a>
|
|
|
+ </template>
|
|
|
+ <!-- 点价类型 -->
|
|
|
+ <template #pricetype="{ text }">
|
|
|
+ <a>{{ getPriceTypeName(text) }}</a>
|
|
|
+ </template>
|
|
|
+ <!-- 出入库类型 -->
|
|
|
+ <template #inouttype="{ text }">
|
|
|
+ <a>{{ InOutTypeName(text) }}</a>
|
|
|
+ </template>
|
|
|
+ <!-- 对手方 -->
|
|
|
+ <template #buynicknameOrsellusername="{ record }">
|
|
|
+ <a>{{ handleName(record) }}</a>
|
|
|
+ </template>
|
|
|
</a-table>
|
|
|
<!-- 右键 -->
|
|
|
<contextMenu :contextMenu="contextMenu"
|