|
|
@@ -8,9 +8,9 @@
|
|
|
<div class="block-bottom-left">
|
|
|
<span :class="quote.lastColor" v-if="[10, 53].includes(quote.trademode)">{{ handleNumberValue(formatDecimal(quote.last, quote.decimalplace)) }}</span>
|
|
|
<div v-else>
|
|
|
- <span :class="quote.askColor">{{ handleNumberValue(quote.ask.toFixed(quote.decimalplace)) }}</span>
|
|
|
+ <span :class="quote.askColor">{{ handleNumberValue(formatDecimal(quote.ask, quote.decimalplace)) }}</span>
|
|
|
<span>{{ ' / ' }}</span>
|
|
|
- <span :class="quote.bidColor">{{ handleNumberValue(quote.bid.toFixed(quote.decimalplace)) }}</span>
|
|
|
+ <span :class="quote.bidColor">{{ handleNumberValue(formatDecimal(quote.bid, quote.decimalplace)) }}</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="block-bottom-right">
|