|
|
@@ -22,6 +22,10 @@
|
|
|
<template #askvolume="{ text }">
|
|
|
<span>{{ handleNoneValue(text) }}</span>
|
|
|
</template>
|
|
|
+ <!-- 开盘价 -->
|
|
|
+ <template #opened="{ text }">
|
|
|
+ <span>{{ handleNoneValue(text) }}</span>
|
|
|
+ </template>
|
|
|
<!-- 涨跌 -->
|
|
|
<template #change="{ record }">
|
|
|
<span>{{ quoteChange(record, record.decimalplace) }}</span>
|
|
|
@@ -39,23 +43,28 @@
|
|
|
</template>
|
|
|
<!-- 买价 -->
|
|
|
<template #bid="{ text, record }">
|
|
|
- <span :class="handleQuotePriceColor(text, record.presettle)">{{ text }}</span>
|
|
|
+ <span
|
|
|
+ :class="handleQuotePriceColor(text, record.presettle)">{{ handleNoneValue(text) }}</span>
|
|
|
</template>
|
|
|
<!-- 卖价 -->
|
|
|
<template #ask="{ text, record }">
|
|
|
- <span :class="handleQuotePriceColor(text, record.presettle)">{{ text }}</span>
|
|
|
+ <span
|
|
|
+ :class="handleQuotePriceColor(text, record.presettle)">{{ handleNoneValue(text) }}</span>
|
|
|
</template>
|
|
|
<!-- 最新价 -->
|
|
|
<template #last="{ text, record }">
|
|
|
- <span :class="handleQuotePriceColor(text, record.presettle)">{{ text }}</span>
|
|
|
+ <span
|
|
|
+ :class="handleQuotePriceColor(text, record.presettle)">{{ handleNoneValue(text) }}</span>
|
|
|
</template>
|
|
|
<!-- 最低价 -->
|
|
|
<template #lowest="{ text, record }">
|
|
|
- <span :class="handleQuotePriceColor(text, record.presettle)">{{ text }}</span>
|
|
|
+ <span
|
|
|
+ :class="handleQuotePriceColor(text, record.presettle)">{{ handleNoneValue(text) }}</span>
|
|
|
</template>
|
|
|
<!-- 最高价 -->
|
|
|
<template #highest="{ text, record }">
|
|
|
- <span :class="handleQuotePriceColor(text, record.presettle)">{{ text }}</span>
|
|
|
+ <span
|
|
|
+ :class="handleQuotePriceColor(text, record.presettle)">{{ handleNoneValue(text) }}</span>
|
|
|
</template>
|
|
|
</a-table>
|
|
|
<!-- 右键 -->
|