|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
<template>
|
|
|
- <!-- 现货仓单 挂单 -->
|
|
|
|
|
|
|
+ <!-- 现货仓单 议价 -->
|
|
|
<section>
|
|
<section>
|
|
|
<a-table :columns="columns"
|
|
<a-table :columns="columns"
|
|
|
class="srcollYTable expandLeftTable"
|
|
class="srcollYTable expandLeftTable"
|
|
@@ -38,6 +38,12 @@
|
|
|
<template #wrtradetype="{ record }">
|
|
<template #wrtradetype="{ record }">
|
|
|
<a>{{ getWrOrderTypeName(record.buyorsell, record.wrtradetype) }}</a>
|
|
<a>{{ getWrOrderTypeName(record.buyorsell, record.wrtradetype) }}</a>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
+ <template #applystatus="{ text }">
|
|
|
|
|
+ <span>{{ getBarmaginApplyStatus(text) }}</span>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ <template #applytime="{ text }">
|
|
|
|
|
+ <span>{{ formatTime(text) }}</span>
|
|
|
|
|
+ </template>
|
|
|
<!-- 挂牌价格 -->
|
|
<!-- 挂牌价格 -->
|
|
|
</a-table>
|
|
</a-table>
|
|
|
<component :is="componentId"
|
|
<component :is="componentId"
|
|
@@ -55,7 +61,7 @@ import { QueryWrOrderDetailReq, QueryWrTradeBargainApplyQsp, QueryWrTradeBargain
|
|
|
import { getRecordItemTab } from '@/common/setup/order/orderData';
|
|
import { getRecordItemTab } from '@/common/setup/order/orderData';
|
|
|
import { handleComposeOrderTable } from '@/common/setup/table/compose';
|
|
import { handleComposeOrderTable } from '@/common/setup/table/compose';
|
|
|
import { ComposeOrderTableParam } from '@/common/setup/table/interface';
|
|
import { ComposeOrderTableParam } from '@/common/setup/table/interface';
|
|
|
-import { getWrOrderTypeName, getWrTradeOrderStatusName } from '@/common/constants/enumsName';
|
|
|
|
|
|
|
+import { getWrOrderTypeName, getWrTradeOrderStatusName, getBarmaginApplyStatus } from '@/common/constants/enumsName';
|
|
|
import { BtnListType } from '@/common/components/btnList/interface';
|
|
import { BtnListType } from '@/common/components/btnList/interface';
|
|
|
import { expandIcon } from '@/common/setup/table/clolumn';
|
|
import { expandIcon } from '@/common/setup/table/clolumn';
|
|
|
import { getSpotWarrantBargainColumns } from './setup';
|
|
import { getSpotWarrantBargainColumns } from './setup';
|
|
@@ -113,6 +119,7 @@ export default defineComponent({
|
|
|
getWrOrderTypeName,
|
|
getWrOrderTypeName,
|
|
|
expandIcon,
|
|
expandIcon,
|
|
|
formatTime,
|
|
formatTime,
|
|
|
|
|
+ getBarmaginApplyStatus,
|
|
|
};
|
|
};
|
|
|
},
|
|
},
|
|
|
});
|
|
});
|