|
|
@@ -11,6 +11,10 @@
|
|
|
<template #buyorsell="{ text }">
|
|
|
<span>{{ getBuyOrSellTypeName(text) }}</span>
|
|
|
</template>
|
|
|
+ <!-- 成交类型 -->
|
|
|
+ <template #buildtype="{ text }">
|
|
|
+ <span>{{ getChannelBuildName(text) }}</span>
|
|
|
+ </template>
|
|
|
<template #tradeprice="{ text, record }">
|
|
|
<span>{{ handleType(record, text) }}</span>
|
|
|
</template>
|
|
|
@@ -34,7 +38,7 @@
|
|
|
import MtpTableScroll from '@/common/components/tableScroll/index.vue';
|
|
|
import { TradeMode } from '@/common/constants/enumCommon';
|
|
|
import { enumOrderComponents } from '@/common/constants/enumOrderComponents';
|
|
|
-import { getBuildTypeName, getBuyOrSellTypeName, getOrderStatusName } from '@/common/constants/enumsName';
|
|
|
+import { getBuildTypeName, getBuyOrSellTypeName, getOrderStatusName, getChannelBuildName } from '@/common/constants/enumsName';
|
|
|
import { BtnList, defineComponent, queryTableList } from '@/common/export/commonTable';
|
|
|
import { formatTime } from '@/common/methods';
|
|
|
import { getRecordItemTab } from '@/common/setup/order/orderData';
|
|
|
@@ -87,6 +91,7 @@ export default defineComponent({
|
|
|
getBuyOrSellTypeName,
|
|
|
handleNoneValue,
|
|
|
handleType,
|
|
|
+ getChannelBuildName,
|
|
|
};
|
|
|
},
|
|
|
});
|