|
|
@@ -11,9 +11,9 @@
|
|
|
{{ getBuyOrSellName(value) }}
|
|
|
</template>
|
|
|
<!-- 最新价 -->
|
|
|
- <template #lastprice="{ row }">
|
|
|
- <span :class="row.lastColor">
|
|
|
- {{ handleNumberValue(formatDecimal(row.lastprice, row.decimalplace)) }}
|
|
|
+ <template #lastPrice="{ row }">
|
|
|
+ <span :class="row.lastPriceClass">
|
|
|
+ {{ handleNumberValue(formatDecimal(row.lastPrice, row.decimalplace)) }}
|
|
|
</span>
|
|
|
</template>
|
|
|
<!-- 持仓均价 -->
|
|
|
@@ -21,8 +21,8 @@
|
|
|
{{ handleNumberValue(formatDecimal(value)) }}
|
|
|
</template>
|
|
|
<!-- 浮动盈亏-->
|
|
|
- <template #closepl="{ row }">
|
|
|
- <span :class="row.closeplColor">{{ formatDecimal(row.closepl, row.decimalplace) }}</span>
|
|
|
+ <template #profitLoss="{ row }">
|
|
|
+ <span :class="row.profitLossClass">{{ formatDecimal(row.profitLoss, row.decimalplace) }}</span>
|
|
|
</template>
|
|
|
<!-- 操作 -->
|
|
|
<template #operate="{ row }">
|