|
@@ -1,22 +1,8 @@
|
|
|
<template>
|
|
<template>
|
|
|
<!-- 商品订单 - 成交 -历史记录-->
|
|
<!-- 商品订单 - 成交 -历史记录-->
|
|
|
- <section
|
|
|
|
|
- :class="[isShowBottom ? 'topTableHeight_441' : 'topTableHeight_441_no_bottom', 'topTableHeight']"
|
|
|
|
|
- >
|
|
|
|
|
|
|
+ <section :class="[isShowBottom ? 'topTableHeight_441' : 'topTableHeight_441_no_bottom', 'topTableHeight']">
|
|
|
<Filter @search="search" />
|
|
<Filter @search="search" />
|
|
|
- <a-table
|
|
|
|
|
- :columns="columns"
|
|
|
|
|
- class="srcollYTable"
|
|
|
|
|
- :scroll="{ x: '100%', y: 'calc(100vh - 441px)' }"
|
|
|
|
|
- :pagination="false"
|
|
|
|
|
- :loading="loading"
|
|
|
|
|
- :expandedRowKeys="expandedRowKeys"
|
|
|
|
|
- :customRow="Rowclick"
|
|
|
|
|
- :expandIcon="expandIcon"
|
|
|
|
|
- :expandIconAsCell="false"
|
|
|
|
|
- rowKey="key"
|
|
|
|
|
- :data-source="tableList"
|
|
|
|
|
- >
|
|
|
|
|
|
|
+ <a-table :columns="columns" class="srcollYTable" :scroll="{ x: '100%', y: 'calc(100vh - 441px)' }" :pagination="false" :loading="loading" :expandedRowKeys="expandedRowKeys" :customRow="Rowclick" :expandIcon="expandIcon" :expandIconAsCell="false" rowKey="key" :data-source="tableList">
|
|
|
<!-- 类型 -->
|
|
<!-- 类型 -->
|
|
|
<template #buyorsell="{ text }">
|
|
<template #buyorsell="{ text }">
|
|
|
<span>{{ getBuyOrSellTypeName(text) }}</span>
|
|
<span>{{ getBuyOrSellTypeName(text) }}</span>
|
|
@@ -71,8 +57,8 @@ export default defineComponent({
|
|
|
// 查询数据
|
|
// 查询数据
|
|
|
const search = (value: Moment[]) => {
|
|
const search = (value: Moment[]) => {
|
|
|
const param = {
|
|
const param = {
|
|
|
- enddate: value[1].format('YYYY-MM-DD'),
|
|
|
|
|
- begindate: value[0].format('YYYY-MM-DD'),
|
|
|
|
|
|
|
+ startDate: value[0].format('YYYY-MM-DD'),
|
|
|
|
|
+ endDate: value[1].format('YYYY-MM-DD'),
|
|
|
tradeMode: TradeMode.DiaoQi.toString()
|
|
tradeMode: TradeMode.DiaoQi.toString()
|
|
|
};
|
|
};
|
|
|
queryTable(queryHisTradeDetail, param);
|
|
queryTable(queryHisTradeDetail, param);
|