|
|
@@ -1,67 +1,65 @@
|
|
|
<template>
|
|
|
- <!--订单交易 挂牌转让-->
|
|
|
- <div class="topTableHeight">
|
|
|
- <a-table
|
|
|
- :columns="columns"
|
|
|
- class="srcollYTable"
|
|
|
- :scroll="{ x: '100%', y: 'calc(100vh - 384px)' }"
|
|
|
- :pagination="false"
|
|
|
- :loading="loading"
|
|
|
- :expandedRowKeys="expandedRowKeys"
|
|
|
- :customRow="Rowclick"
|
|
|
- rowKey="goodscode"
|
|
|
- ref="tableRef"
|
|
|
- :data-source="getQuoteList()"
|
|
|
- >
|
|
|
- <template #totalturnover="{ text }">
|
|
|
- <span>{{changeUnit(text)}}</span>
|
|
|
- </template>
|
|
|
- <!-- 涨跌 -->
|
|
|
- <template #change="{ record }">
|
|
|
- <span>{{quoteChange(record, record.decimalplace)}}</span>
|
|
|
- </template>
|
|
|
- <!-- 幅度 -->
|
|
|
- <template #amplitude="{ record }">
|
|
|
- <span>{{quoteAmplituOfVibration(record, record.decimalplace)}}</span>
|
|
|
- </template>
|
|
|
- <!-- 振幅 -->
|
|
|
- <template #vibration="{ record }">
|
|
|
- <span>{{quoteAmplituOfVibration(record, record.decimalplace)}}</span>
|
|
|
- </template>
|
|
|
- <template #index="{ index }">
|
|
|
- <span>{{index + 1}}</span>
|
|
|
- </template>
|
|
|
- <!-- 买价 -->
|
|
|
- <template #bid="{ text, record }">
|
|
|
- <span :class="handleQuotePriceColor(text, record.presettle)">{{text}}</span>
|
|
|
- </template>
|
|
|
- <!-- 卖价 -->
|
|
|
- <template #ask="{ text, record }">
|
|
|
- <span :class="handleQuotePriceColor(text, record.presettle)">{{text}}</span>
|
|
|
- </template>
|
|
|
- <!-- 最新价 -->
|
|
|
- <template #last="{ text, record }">
|
|
|
- <span :class="handleQuotePriceColor(text, record.presettle)">{{text}}</span>
|
|
|
- </template>
|
|
|
- <!-- 最低价 -->
|
|
|
- <template #lowest="{ text, record }">
|
|
|
- <span :class="handleQuotePriceColor(text, record.presettle)">{{text}}</span>
|
|
|
- </template>
|
|
|
- <!-- 最高价 -->
|
|
|
- <template #highest="{ text, record }">
|
|
|
- <span :class="handleQuotePriceColor(text, record.presettle)">{{text}}</span>
|
|
|
- </template>
|
|
|
- </a-table>
|
|
|
- <!-- 右键 -->
|
|
|
- <contextMenu :contextMenu="contextMenu" @cancel="closeContext" :list="btnList"></contextMenu>
|
|
|
- <component
|
|
|
- :is="componentId"
|
|
|
- v-if="componentId"
|
|
|
- :selectedRow="selectedRow"
|
|
|
- :deliverGoods="findDeilverGoodsByGoodsCode(selectedRow.goodscode)"
|
|
|
- @cancel="closeComponent"
|
|
|
- ></component>
|
|
|
- </div>
|
|
|
+ <!--订单交易 挂牌转让-->
|
|
|
+ <div class="topTableHeight">
|
|
|
+ <a-table :columns="columns"
|
|
|
+ class="srcollYTable"
|
|
|
+ :scroll="{ x: '100%', y: 'calc(100vh - 384px)' }"
|
|
|
+ :pagination="false"
|
|
|
+ :loading="loading"
|
|
|
+ :expandedRowKeys="expandedRowKeys"
|
|
|
+ :customRow="Rowclick"
|
|
|
+ rowKey="goodscode"
|
|
|
+ ref="tableRef"
|
|
|
+ :data-source="getQuoteList()">
|
|
|
+ <template #totalturnover="{ text }">
|
|
|
+ <span>{{changeUnit(text)}}</span>
|
|
|
+ </template>
|
|
|
+ <!-- 涨跌 -->
|
|
|
+ <template #change="{ record }">
|
|
|
+ <span>{{quoteChange(record, record.decimalplace)}}</span>
|
|
|
+ </template>
|
|
|
+ <!-- 幅度 -->
|
|
|
+ <template #amplitude="{ record }">
|
|
|
+ <span>{{quoteAmplituOfVibration(record, record.decimalplace)}}</span>
|
|
|
+ </template>
|
|
|
+ <!-- 振幅 -->
|
|
|
+ <template #vibration="{ record }">
|
|
|
+ <span>{{quoteAmplituOfVibration(record, record.decimalplace)}}</span>
|
|
|
+ </template>
|
|
|
+ <template #index="{ index }">
|
|
|
+ <span>{{index + 1}}</span>
|
|
|
+ </template>
|
|
|
+ <!-- 买价 -->
|
|
|
+ <template #bid="{ text, record }">
|
|
|
+ <span :class="handleQuotePriceColor(text, record.presettle)">{{text}}</span>
|
|
|
+ </template>
|
|
|
+ <!-- 卖价 -->
|
|
|
+ <template #ask="{ text, record }">
|
|
|
+ <span :class="handleQuotePriceColor(text, record.presettle)">{{text}}</span>
|
|
|
+ </template>
|
|
|
+ <!-- 最新价 -->
|
|
|
+ <template #last="{ text, record }">
|
|
|
+ <span :class="handleQuotePriceColor(text, record.presettle)">{{text}}</span>
|
|
|
+ </template>
|
|
|
+ <!-- 最低价 -->
|
|
|
+ <template #lowest="{ text, record }">
|
|
|
+ <span :class="handleQuotePriceColor(text, record.presettle)">{{text}}</span>
|
|
|
+ </template>
|
|
|
+ <!-- 最高价 -->
|
|
|
+ <template #highest="{ text, record }">
|
|
|
+ <span :class="handleQuotePriceColor(text, record.presettle)">{{text}}</span>
|
|
|
+ </template>
|
|
|
+ </a-table>
|
|
|
+ <!-- 右键 -->
|
|
|
+ <contextMenu :contextMenu="contextMenu"
|
|
|
+ @cancel="closeContext"
|
|
|
+ :list="btnList"></contextMenu>
|
|
|
+ <component :is="componentId"
|
|
|
+ v-if="componentId"
|
|
|
+ :selectedRow="selectedRow"
|
|
|
+ :deliverGoods="findDeilverGoodsByGoodsCode(selectedRow.goodscode)"
|
|
|
+ @cancel="closeComponent"></component>
|
|
|
+ </div>
|
|
|
</template>
|
|
|
|
|
|
<script lang="ts">
|
|
|
@@ -70,7 +68,7 @@ import { contextMenu, defineAsyncComponent, defineComponent } from '@/common/exp
|
|
|
|
|
|
import { handleDeliveryRelation } from '../setup';
|
|
|
|
|
|
-import { handleSubcriteQuote, handleQuotePriceColor, quoteChange, quoteAmplitude, quoteAmplituOfVibration } from '@/common/setup/table/tableQuote';
|
|
|
+import { handleSubcriteOnDemandQuote, handleQuotePriceColor, quoteChange, quoteAmplitude, quoteAmplituOfVibration } from '@/common/setup/table/tableQuote';
|
|
|
import { QueryDeliveryRelationRsp } from '@/services/go/delivery/interface';
|
|
|
import { columnsList } from '../setup';
|
|
|
|
|
|
@@ -100,7 +98,7 @@ export default defineComponent({
|
|
|
];
|
|
|
const { deliverGoods, getQuoteList, findDeilverGoodsByGoodsCode } = handleDeliveryRelation([1, 3]);
|
|
|
// 行情按需订阅
|
|
|
- handleSubcriteQuote<QueryDeliveryRelationRsp>(deliverGoods);
|
|
|
+ handleSubcriteOnDemandQuote<QueryDeliveryRelationRsp>(deliverGoods);
|
|
|
|
|
|
return {
|
|
|
...handleTableEventAndData<QueryQuoteDayRsp>(param),
|